From ab9d078e38e1c022684e7c0e177076bb10216c9b Mon Sep 17 00:00:00 2001 From: nnandigam Date: Mon, 23 Oct 2023 08:26:01 -0700 Subject: [PATCH 01/11] GA versioning refactor --- azurelinuxagent/common/conf.py | 10 +- ...sions_goal_state_from_extensions_config.py | 6 + .../extensions_goal_state_from_vm_settings.py | 8 + azurelinuxagent/common/protocol/restapi.py | 24 +- azurelinuxagent/ga/agent_update_handler.py | 614 +++++++++++------- azurelinuxagent/ga/guestagent.py | 11 - runtime/cache/azure_locations_westus2.json | 1 + ...sions_goal_state_from_extensions_config.py | 40 ++ ..._extensions_goal_state_from_vm_settings.py | 54 +- .../ext_conf-requested_version.xml | 4 + ...onf-requested_version_properties_false.xml | 152 +++++ .../vm_settings-requested_version.json | 4 + ...gs-requested_version_properties_false.json | 145 +++++ .../data/wire/ext_conf_requested_version.xml | 4 + ...uested_version_missing_in_agent_family.xml | 31 + ..._requested_version_missing_in_manifest.xml | 4 + ...xt_conf_requested_version_not_from_rsm.xml | 33 + ...t_conf_vm_not_enabled_for_rsm_upgrades.xml | 33 + tests/ga/test_agent_update_handler.py | 195 ++++-- tests/ga/test_update.py | 71 +- tests/lib/wire_protocol_data.py | 3 + 21 files changed, 1108 insertions(+), 339 deletions(-) create mode 100644 runtime/cache/azure_locations_westus2.json create mode 100644 tests/data/hostgaplugin/ext_conf-requested_version_properties_false.xml create mode 100644 tests/data/hostgaplugin/vm_settings-requested_version_properties_false.json create mode 100644 tests/data/wire/ext_conf_requested_version_missing_in_agent_family.xml create mode 100644 tests/data/wire/ext_conf_requested_version_not_from_rsm.xml create mode 100644 tests/data/wire/ext_conf_vm_not_enabled_for_rsm_upgrades.xml diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py index 167d520d09..c060b12574 100644 --- a/azurelinuxagent/common/conf.py +++ b/azurelinuxagent/common/conf.py @@ -624,18 +624,18 @@ def get_etp_collection_period(conf=__conf__): def get_hotfix_upgrade_frequency(conf=__conf__): """ - Determines the frequency to check for Hotfix upgrades (. version changed in new upgrades). + Determines the frequency to check for Hotfix upgrades ( version changed in new upgrades). NOTE: This option is experimental and may be removed in later versions of the Agent. """ return conf.get_int("Debug.AutoUpdateHotfixFrequency", 4 * 60 * 60) -def get_normal_upgrade_frequency(conf=__conf__): +def get_regular_upgrade_frequency(conf=__conf__): """ - Determines the frequency to check for Normal upgrades (. version changed in new upgrades). + Determines the frequency to check for regular upgrades (.. version changed in new upgrades). NOTE: This option is experimental and may be removed in later versions of the Agent. """ - return conf.get_int("Debug.AutoUpdateNormalFrequency", 24 * 60 * 60) + return conf.get_int("Debug.AutoUpdateRegularFrequency", 24 * 60 * 60) def get_enable_ga_versioning(conf=__conf__): @@ -643,7 +643,7 @@ def get_enable_ga_versioning(conf=__conf__): If True, the agent looks for rsm updates(checking requested version in GS) otherwise it will fall back to self-update and finds the highest version from PIR. NOTE: This option is experimental and may be removed in later versions of the Agent. """ - return conf.get_switch("Debug.EnableGAVersioning", False) + return conf.get_switch("Debug.EnableGAVersioning", True) def get_firewall_rules_log_period(conf=__conf__): diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py index a8bfa25054..f8a25c2996 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py @@ -61,9 +61,15 @@ def _parse_extensions_config(self, xml_text, wire_client): for ga_family in ga_families: name = findtext(ga_family, "Name") version = findtext(ga_family, "Version") + is_version_from_rsm = findtext(ga_family, "IsVersionFromRSM") + is_vm_enabled_for_rsm_upgrades = findtext(ga_family, "IsVMEnabledForRSMUpgrades") uris_list = find(ga_family, "Uris") uris = findall(uris_list, "Uri") family = VMAgentFamily(name, version) + if is_version_from_rsm is not None: + family.is_version_from_rsm = is_version_from_rsm.lower() == "true" + if is_vm_enabled_for_rsm_upgrades is not None: + family.is_vm_enabled_for_rsm_upgrades = is_vm_enabled_for_rsm_upgrades.lower() == "true" for uri in uris: family.uris.append(gettext(uri)) self._agent_families.append(family) diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py index 664d1e868f..afbb1b7f31 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py @@ -243,6 +243,8 @@ def _parse_agent_manifests(self, vm_settings): # { # "name": "Prod", # "version": "9.9.9.9", + # "isVersionFromRSM": true, + # "isVMEnabledForRSMUpgrades": true, # "uris": [ # "https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml", # "https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml" @@ -267,10 +269,16 @@ def _parse_agent_manifests(self, vm_settings): for family in families: name = family["name"] version = family.get("version") + is_version_from_rsm = family.get("isVersionFromRSM") + is_vm_enabled_for_rsm_upgrades = family.get("isVMEnabledForRSMUpgrades") uris = family.get("uris") if uris is None: uris = [] agent_family = VMAgentFamily(name, version) + if is_version_from_rsm is not None: + agent_family.is_version_from_rsm = is_version_from_rsm + if is_vm_enabled_for_rsm_upgrades is not None: + agent_family.is_vm_enabled_for_rsm_upgrades = is_vm_enabled_for_rsm_upgrades for u in uris: agent_family.uris.append(u) self._agent_families.append(agent_family) diff --git a/azurelinuxagent/common/protocol/restapi.py b/azurelinuxagent/common/protocol/restapi.py index 725e2d7bb4..6a94d65f0a 100644 --- a/azurelinuxagent/common/protocol/restapi.py +++ b/azurelinuxagent/common/protocol/restapi.py @@ -22,7 +22,6 @@ from azurelinuxagent.common.datacontract import DataContract, DataContractList from azurelinuxagent.common.future import ustr -from azurelinuxagent.common.utils.flexible_version import FlexibleVersion from azurelinuxagent.common.utils.textutil import getattrib from azurelinuxagent.common.version import DISTRO_VERSION, DISTRO_NAME, CURRENT_VERSION @@ -69,23 +68,16 @@ def __init__(self): class VMAgentFamily(object): - def __init__(self, name, version=None): + def __init__(self, name, version): self.name = name - # This is the Requested version as specified by the Goal State, it defaults to 0.0.0.0 if not specified in GS - self.requested_version_string = VERSION_0 if version is None else version - self.uris = [] - - @property - def requested_version(self): - return FlexibleVersion(self.requested_version_string) + # This is the Requested version as specified by the Goal State + self.requested_version = version + # Set to None if the property not specified in the GS and later computed True/False based on previous state in agent update + self.is_version_from_rsm = None + # Set to None if this property not specified in the GS and later computed True/False based on previous state in agent update + self.is_vm_enabled_for_rsm_upgrades = None - @property - def is_requested_version_specified(self): - """ - If we don't get any requested_version from the GS, we default it to 0.0.0.0. - This property identifies if a requested Version was passed in the GS or not. - """ - return self.requested_version > FlexibleVersion(VERSION_0) + self.uris = [] def __repr__(self): return self.__str__() diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index a650f110ac..62d2ae6648 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -1,5 +1,6 @@ import datetime import glob +import json import os import shutil @@ -7,13 +8,12 @@ from azurelinuxagent.common.event import add_event, WALAEventOperation from azurelinuxagent.common.exception import AgentUpgradeExitException, AgentUpdateError from azurelinuxagent.common.future import ustr -from azurelinuxagent.common.logger import LogLevel from azurelinuxagent.common.protocol.extensions_goal_state import GoalStateSource from azurelinuxagent.common.protocol.restapi import VMAgentUpdateStatuses, VMAgentUpdateStatus, VERSION_0 -from azurelinuxagent.common.utils import fileutil, textutil +from azurelinuxagent.common.utils import fileutil, textutil, timeutil from azurelinuxagent.common.utils.flexible_version import FlexibleVersion from azurelinuxagent.common.version import get_daemon_version, CURRENT_VERSION, AGENT_NAME, AGENT_DIR_PATTERN -from azurelinuxagent.ga.guestagent import GuestAgent, GAUpdateReportState +from azurelinuxagent.ga.guestagent import GuestAgent def get_agent_update_handler(protocol): @@ -25,7 +25,7 @@ class AgentUpgradeType(object): Enum for different modes of Agent Upgrade """ Hotfix = "Hotfix" - Normal = "Normal" + Regular = "Regular" class AgentUpdateHandlerUpdateState(object): @@ -36,105 +36,143 @@ class AgentUpdateHandlerUpdateState(object): def __init__(self): self.last_attempted_requested_version_update_time = datetime.datetime.min self.last_attempted_hotfix_update_time = datetime.datetime.min - self.last_attempted_normal_update_time = datetime.datetime.min + self.last_attempted_regular_update_time = datetime.datetime.min self.last_attempted_manifest_download_time = datetime.datetime.min + self.last_attempted_update_error_msg = "" + self.last_attempted_update_version = FlexibleVersion("0.0.0.0") class AgentUpdateHandler(object): - + """ + This class handles two type of agent updates and chooses the appropriate updater based on the below conditions: + RSM update: This is the update requested by RSM. The contract between CRP and agent is we get following properties in the goal state: + version: it will have what version to update + isVersionFromRSM: True if the version is from RSM deployment. + isVMEnabledForRSMUpgrades: True if the VM is enabled for RSM upgrades. + if vm enabled for RSM upgrades and get a requested version, we use RSM update path. But if requested update is downgarde then we check + isVersionFomRSM true to consider the update otherwise we ignore the update if version not from RSM deployment. + This update is allowed once per (as specified in the conf.get_autoupdate_frequency()) + Largest version update(self-update): We fallback to this if above is condition not met. This update to the largest version available in the manifest + we allow update once per (as specified in the conf.get_hotfix_upgrade_frequency() or conf.get_normal_upgrade_frequency()) + Note: Self-update don't support downgrade. + """ def __init__(self, protocol): self._protocol = protocol self._ga_family = conf.get_autoupdate_gafamily() self._autoupdate_enabled = conf.get_autoupdate_enabled() self._gs_id = "unknown" - self._is_requested_version_update = True # This is to track the current update type(requested version or self update) + self._daemon_version = self._get_daemon_version_for_update() self.update_state = AgentUpdateHandlerUpdateState() - def __check_if_agent_update_allowed_and_update_next_upgrade_times(self, requested_version): - """ - requested version update: - update is allowed once per (as specified in the conf.get_autoupdate_frequency()) - return false when we don't allow updates. - largest version update(self-update): - update is allowed once per (as specified in the conf.get_hotfix_upgrade_frequency() or conf.get_normal_upgrade_frequency()) - return false when we don't allow updates. - """ - now = datetime.datetime.now() - - if self._is_requested_version_update: - if self.update_state.last_attempted_requested_version_update_time != datetime.datetime.min: - next_attempt_time = self.update_state.last_attempted_requested_version_update_time + datetime.timedelta(seconds=conf.get_autoupdate_frequency()) - else: - next_attempt_time = now - - if next_attempt_time > now: - return False - # The time limit elapsed for us to allow updates. - self.update_state.last_attempted_requested_version_update_time = now - return True + # restore the state of rsm update + if not os.path.exists(self._get_rsm_version_state_file()): + self._is_version_from_rsm = False + self._is_vm_enabled_for_rsm_upgrades = False else: - next_hotfix_time, next_normal_time = self.__get_next_upgrade_times(now) - upgrade_type = self.__get_agent_upgrade_type(requested_version) - - if (upgrade_type == AgentUpgradeType.Hotfix and next_hotfix_time <= now) or ( - upgrade_type == AgentUpgradeType.Normal and next_normal_time <= now): - # Update the last upgrade check time even if no new agent is available for upgrade - self.update_state.last_attempted_hotfix_update_time = now - self.update_state.last_attempted_normal_update_time = now - return True - return False - - def __should_agent_attempt_manifest_download(self): - """ - The agent should attempt to download the manifest if - the agent has not attempted to download the manifest in the last 1 hour - """ - now = datetime.datetime.now() - - if self.update_state.last_attempted_manifest_download_time != datetime.datetime.min: - next_attempt_time = self.update_state.last_attempted_manifest_download_time + datetime.timedelta(seconds=conf.get_autoupdate_frequency()) - else: - next_attempt_time = now - - if next_attempt_time > now: - return False - self.update_state.last_attempted_manifest_download_time = now - return True - - @staticmethod - def __get_agent_upgrade_type(requested_version): - # We follow semantic versioning for the agent, if .. is same, then has changed. - # In this case, we consider it as a Hotfix upgrade. Else we consider it a Normal upgrade. - if requested_version.major == CURRENT_VERSION.major and requested_version.minor == CURRENT_VERSION.minor and requested_version.patch == CURRENT_VERSION.patch: - return AgentUpgradeType.Hotfix - return AgentUpgradeType.Normal + self._is_version_from_rsm = self._get_is_version_from_rsm() + self._is_vm_enabled_for_rsm_upgrades = self._get_is_vm_enabled_for_rsm_upgrades() @staticmethod - def __get_daemon_version_for_update(): + def _get_daemon_version_for_update(): daemon_version = get_daemon_version() if daemon_version != FlexibleVersion(VERSION_0): return daemon_version - # We return 0.0.0.0 if we failed to retrieve daemon version. In that case, + # We return 0.0.0.0 if daemon version is not specified. In that case, # use the min version as 2.2.53 as we started setting the daemon version starting 2.2.53. return FlexibleVersion("2.2.53") - def __get_next_upgrade_times(self, now): + @staticmethod + def _get_rsm_version_state_file(): + # This file keeps the isversionfromrsm and isvmeabledforrsmupgrades of the most recent goal state. + return os.path.join(conf.get_lib_dir(), "rsm_version.json") + + def _save_rsm_version_state(self, isVersionFromRSM, isVMEnabledForRSMUpgrades, timestamp): """ - Get the next upgrade times - return: Next Hotfix Upgrade Time, Next Normal Upgrade Time + Save the rsm state to the file + """ + try: + with open(self._get_rsm_version_state_file(), "w") as file_: + json.dump({"isVersionFromRSM": isVersionFromRSM, + "isVMEnabledForRSMUpgrades": isVMEnabledForRSMUpgrades, + "timestamp": timestamp}, file_) + except Exception as e: + logger.warn("Error updating the RSM version state ({0}): {1}", self._get_rsm_version_state_file(), ustr(e)) + + def _get_is_version_from_rsm(self): + """ + Returns isVersionFromRSM property of most recent goal state or False if the most recent + goal state was not added this property or set to False in gs. """ + if not os.path.exists(self._get_rsm_version_state_file()): + return False - def get_next_process_time(last_val, frequency): - return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) + try: + with open(self._get_rsm_version_state_file(), "r") as file_: + return json.load(file_)["isVersionFromRSM"] + except Exception as e: + logger.warn( + "Can't retrieve the is_version_from_rsm most recent rsm state ({0}), will assume it False. Error: {1}", + self._get_rsm_version_state_file(), ustr(e)) + return False + + def _get_is_vm_enabled_for_rsm_upgrades(self): + """ + Returns isVMEnabledForRSMUpgrades property of most recent goal state or False if the most recent + goal state was not added this property or set to False in gs. + """ + if not os.path.exists(self._get_rsm_version_state_file()): + return False - next_hotfix_time = get_next_process_time(self.update_state.last_attempted_hotfix_update_time, - conf.get_hotfix_upgrade_frequency()) - next_normal_time = get_next_process_time(self.update_state.last_attempted_normal_update_time, - conf.get_normal_upgrade_frequency()) + try: + with open(self._get_rsm_version_state_file(), "r") as file_: + return json.load(file_)["isVMEnabledForRSMUpgrades"] + except Exception as e: + logger.warn( + "Can't retrieve the is_vm_enabled_for_rsm_upgrades most recent rsm state ({0}), will assume it False. Error: {1}", + self._get_rsm_version_state_file(), ustr(e)) + return False + + def _get_rsm_state_used_gs_timestamp(self): + """ + Returns the timestamp of th goal state used for rsm state, or min if the most recent + goal state has not been invoked. + """ + if not os.path.exists(self._get_rsm_version_state_file()): + return timeutil.create_timestamp(datetime.datetime.min) - return next_hotfix_time, next_normal_time + try: + with open(self._get_rsm_version_state_file(), "r") as file_: + return json.load(file_)["timestamp"] - def __get_agent_family_manifests(self, goal_state): + except Exception as e: + logger.warn( + "Can't retrieve the timestamp of goal state used for rsm state ({0}), will assume the datetime.min time. Error: {1}", + self._get_rsm_version_state_file(), ustr(e)) + return timeutil.create_timestamp(datetime.datetime.min) + + def _update_rsm_version_state_if_changed(self, goalstate_timestamp, agent_family): + """ + Persisting state to address the issue when HGPA supported(properties present) to unsupported(properties not present) and also sync between Wireserver and HGAP. + Updates the isVrsionFromRSM and isVMEnabledForRSMUpgrades of the most recent goal state retrieved if + properties changed from last rsm state. + Timestamp is the timestamp of the goal state used to update the state. + """ + last_timestamp = self._get_rsm_state_used_gs_timestamp() + # update the state if the goal state is newer than the last goal state used to update the state. + if last_timestamp < goalstate_timestamp: + update_file = False + if agent_family.is_version_from_rsm is not None and self._is_version_from_rsm != agent_family.is_version_from_rsm: + self._is_version_from_rsm = agent_family.is_version_from_rsm + update_file = True + + if agent_family.is_vm_enabled_for_rsm_upgrades is not None and self._is_vm_enabled_for_rsm_upgrades != agent_family.is_vm_enabled_for_rsm_upgrades: + self._is_vm_enabled_for_rsm_upgrades = agent_family.is_vm_enabled_for_rsm_upgrades + update_file = True + + if update_file: + self._save_rsm_version_state(self._is_version_from_rsm, self._is_vm_enabled_for_rsm_upgrades, goalstate_timestamp) + + def _get_agent_family_manifest(self, goal_state): """ Get the agent_family from last GS for the given family Returns: first entry of Manifest @@ -151,7 +189,7 @@ def __get_agent_family_manifests(self, goal_state): agent_family_manifests.append(m) if not family_found: - raise AgentUpdateError(u"Agent family: {0} not found in the goal state, skipping agent update".format(family)) + raise AgentUpdateError(u"Agent family: {0} not found in the goal state incarnation: {1}, skipping agent update".format(family, self._gs_id)) if len(agent_family_manifests) == 0: raise AgentUpdateError( @@ -160,38 +198,142 @@ def __get_agent_family_manifests(self, goal_state): return agent_family_manifests[0] @staticmethod - def __get_requested_version(agent_family): + def _get_requested_version(agent_family): """ Get the requested version from agent family Returns: Requested version if supported and available in the GS - None if requested version missing or GA versioning not enabled + None if requested version missing """ - if conf.get_enable_ga_versioning() and agent_family.is_requested_version_specified: - if agent_family.requested_version is not None: - return FlexibleVersion(agent_family.requested_version) + if agent_family.requested_version is not None: + return FlexibleVersion(agent_family.requested_version) return None - @staticmethod - def __get_largest_version(agent_manifest): - largest_version = FlexibleVersion("0.0.0.0") - for pkg in agent_manifest.pkg_list.versions: - pkg_version = FlexibleVersion(pkg.version) - if pkg_version > largest_version: - largest_version = pkg_version - return largest_version + def run(self, goal_state): + + try: + # Ignore new agents if update is disabled. The latter flag only used in e2e tests. + if not self._autoupdate_enabled or not conf.get_download_new_agents(): + return - def __download_and_get_agent(self, goal_state, agent_family, agent_manifest, requested_version): + agent_family = self._get_agent_family_manifest(goal_state) + requested_version = self._get_requested_version(agent_family) + gs_id = goal_state.extensions_goal_state.id + self._update_rsm_version_state_if_changed(goal_state.extensions_goal_state.created_on_timestamp, agent_family) + # if requested version is specified and vm is enabled for rsm upgrades, use rsm update path, else sef-update + if requested_version is None and self._is_vm_enabled_for_rsm_upgrades: + raise AgentUpdateError("VM Enabled for RSM upgrades but requested version is missing in Goal state: {0}, so skipping agent update".format(gs_id)) + elif conf.get_enable_ga_versioning() and requested_version is not None and self._is_vm_enabled_for_rsm_upgrades: + updater = RSMVersionUpdater(gs_id, agent_family, None, requested_version, self.update_state, self._is_version_from_rsm, self._daemon_version) + self.update_state.last_attempted_update_version = requested_version + else: + updater = SelfUpdateVersionUpdater(gs_id, agent_family, None, None, self.update_state) + + # verify if agent update is allowed + if not updater.should_update_agent(goal_state): + return + updater.log_new_agent_update_message() + updater.purge_extra_agents_from_disk() + agent = updater.download_and_get_new_agent(self._protocol, goal_state) + if agent.is_blacklisted or not agent.is_downloaded: + msg = "Downloaded agent version is in bad state : {0} , skipping agent update".format( + str(agent.version)) + raise AgentUpdateError(msg) + updater.proceed_with_update() + + except Exception as err: + if isinstance(err, AgentUpgradeExitException): + raise err + elif isinstance(err, AgentUpdateError): + error_msg = ustr(err) + else: + error_msg = "Unable to update Agent: {0}".format(textutil.format_exception(err)) + logger.warn(error_msg) + add_event(op=WALAEventOperation.AgentUpgrade, is_success=False, message=error_msg, log_event=False) + self.update_state.last_attempted_update_error_msg = error_msg + + def get_vmagent_update_status(self): """ - This function downloads the new agent(requested version) and returns the downloaded version. + This function gets the VMAgent update status as per the last attempted update. + Returns: None if fail to report or update never attempted with requested version + """ + try: + if conf.get_enable_ga_versioning() and self._is_vm_enabled_for_rsm_upgrades: + if not self.update_state.last_attempted_update_error_msg: + status = VMAgentUpdateStatuses.Success + code = 0 + else: + status = VMAgentUpdateStatuses.Error + code = 1 + return VMAgentUpdateStatus(expected_version=str(self.update_state.last_attempted_update_version), status=status, code=code, message=self.update_state.last_attempted_update_error_msg) + except Exception as err: + msg = "Unable to report agent update status: {0}".format(textutil.format_exception(err)) + logger.warn(msg) + add_event(op=WALAEventOperation.AgentUpgrade, is_success=False, message=msg, log_event=True) + return None + + +class GAVersionUpdater(object): + + def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): + self._gs_id = gs_id + self._agent_family = agent_family + self._agent_manifest = agent_manifest + self._version = version + self._update_state = update_state + + def should_update_agent(self, goal_state): + """ + RSM requested version update: + update is allowed once per (as specified in the conf.get_autoupdate_frequency()) and + if new version not same as current version, not below than daemon version and if version is from rsm request + return false when we don't allow updates. + Largest version update(self-update): + 1) checks if we allowed download manifest as per manifest download frequency + 2) update is allowed once per (as specified in the conf.get_hotfix_upgrade_frequency() or conf.get_regular_upgrade_frequency()) + 3) not below than current version + return false when we don't allow updates. + """ + raise NotImplementedError + + def log_new_agent_update_message(self): + """ + This function logs the update message after we check agent allowed to update. + """ + raise NotImplementedError + + def purge_extra_agents_from_disk(self): + """ + RSM requested version update: + remove the agents( including requested version if exists) from disk except current version. There is a chance that requested version could exist and/or blacklisted + on previous update attempts. So we should remove it from disk in order to honor current requested version update. + Largest version update(self-update): + remove the agents from disk except current version and new agent version if exists + """ + raise NotImplementedError + + def proceed_with_update(self): """ - if agent_manifest is None: # Fetch agent manifest if it's not already done - agent_manifest = goal_state.fetch_agent_manifest(agent_family.name, agent_family.uris) - package_to_download = self.__get_agent_package_to_download(agent_manifest, requested_version) + RSM requested version update: + If requested version is specified, upgrade/downgrade to the specified version. + Raises: AgentUpgradeExitException + Largest version update(self-update): + If largest version is found in manifest, upgrade to that version. Downgrade is not supported. + Raises: AgentUpgradeExitException + """ + raise NotImplementedError + + def download_and_get_new_agent(self, protocol, goal_state): + """ + This function downloads the new agent and returns the downloaded version. + """ + if self._agent_manifest is None: # Fetch agent manifest if it's not already done + self._agent_manifest = goal_state.fetch_agent_manifest(self._agent_family.name, self._agent_family.uris) + package_to_download = self._get_agent_package_to_download(self._agent_manifest, self._version) is_fast_track_goal_state = goal_state.extensions_goal_state.source == GoalStateSource.FastTrack - agent = GuestAgent.from_agent_package(package_to_download, self._protocol, is_fast_track_goal_state) + agent = GuestAgent.from_agent_package(package_to_download, protocol, is_fast_track_goal_state) return agent - def __get_agent_package_to_download(self, agent_manifest, version): + def _get_agent_package_to_download(self, agent_manifest, version): """ Returns the package of the given Version found in the manifest. If not found, returns exception """ @@ -200,25 +342,21 @@ def __get_agent_package_to_download(self, agent_manifest, version): # Found a matching package, only download that one return pkg - raise AgentUpdateError("No matching package found in the agent manifest for requested version: {0} in goal state incarnation: {1}, " + raise AgentUpdateError("No matching package found in the agent manifest for version: {0} in goal state incarnation: {1}, " "skipping agent update".format(str(version), self._gs_id)) @staticmethod - def __purge_extra_agents_from_disk(current_version, known_agents): + def _purge_unknown_agents_from_disk(known_agents): """ Remove from disk all directories and .zip files of unknown agents - (without removing the current, running agent). """ path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) - known_versions = [agent.version for agent in known_agents] - known_versions.append(current_version) - for agent_path in glob.iglob(path): try: name = fileutil.trim_ext(agent_path, "zip") m = AGENT_DIR_PATTERN.match(name) - if m is not None and FlexibleVersion(m.group(1)) not in known_versions: + if m is not None and FlexibleVersion(m.group(1)) not in known_agents: if os.path.isfile(agent_path): logger.info(u"Purging outdated Agent file {0}", agent_path) os.remove(agent_path) @@ -228,23 +366,75 @@ def __purge_extra_agents_from_disk(current_version, known_agents): except Exception as e: logger.warn(u"Purging {0} raised exception: {1}", agent_path, ustr(e)) - def __proceed_with_update(self, requested_version): + +class RSMVersionUpdater(GAVersionUpdater): + def __init__(self, gs_id, agent_family, agent_manifest, version, update_state, is_version_from_rsm, daemon_version): + super(RSMVersionUpdater, self).__init__(gs_id, agent_family, agent_manifest, version, update_state) + self._is_version_from_rsm = is_version_from_rsm + self._daemon_version = daemon_version + + @staticmethod + def _get_all_agents_on_disk(): + path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) + return [GuestAgent.from_installed_agent(path=agent_dir) for agent_dir in glob.iglob(path) if os.path.isdir(agent_dir)] + + def _get_available_agents_on_disk(self): + available_agents = [agent for agent in self._get_all_agents_on_disk() if agent.is_available] + return sorted(available_agents, key=lambda agent: agent.version, reverse=True) + + def _is_update_allowed_this_time(self): """ - If requested version is specified, upgrade/downgrade to the specified version. - Raises: AgentUpgradeExitException + update is allowed once per (as specified in the conf.get_autoupdate_frequency()) + If update allowed, we update the last_attempted_requested_version_update_time to current time. """ - if requested_version < CURRENT_VERSION: + now = datetime.datetime.now() + + if self._update_state.last_attempted_requested_version_update_time != datetime.datetime.min: + next_attempt_time = self._update_state.last_attempted_requested_version_update_time + datetime.timedelta( + seconds=conf.get_autoupdate_frequency()) + else: + next_attempt_time = now + + if next_attempt_time > now: + return False + self._update_state.last_attempted_requested_version_update_time = now + # The time limit elapsed for us to allow updates. + return True + + def should_update_agent(self, goal_state): + if not self._is_update_allowed_this_time(): + return False + + # we don't allow downgrades below daemon version, or if it's same as current version, or requested version < current version and that version not from RSM + if self._version < self._daemon_version or self._version == CURRENT_VERSION or (self._version < CURRENT_VERSION and not self._is_version_from_rsm): + return False + + return True + + def log_new_agent_update_message(self): + msg = "Goal state {0} is requesting a new agent version {1}, will update the agent before processing the goal state.".format(self._gs_id, str(self._version)) + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) + + def purge_extra_agents_from_disk(self): + known_agents = [CURRENT_VERSION] + self._purge_unknown_agents_from_disk(known_agents) + + def proceed_with_update(self): + if self._version < CURRENT_VERSION: # In case of a downgrade, we mark the current agent as bad version to avoid starting it back up ever again # (the expectation here being that if we get request to a downgrade, # there's a good reason for not wanting the current version). prefix = "downgrade" try: # We should always have an agent directory for the CURRENT_VERSION - agents_on_disk = AgentUpdateHandler.__get_available_agents_on_disk() + agents_on_disk = self._get_available_agents_on_disk() current_agent = next(agent for agent in agents_on_disk if agent.version == CURRENT_VERSION) msg = "Marking the agent {0} as bad version since a downgrade was requested in the GoalState, " \ - "suggesting that we really don't want to execute any extensions using this version".format(CURRENT_VERSION) - self.__log_event(LogLevel.INFO, msg) + "suggesting that we really don't want to execute any extensions using this version".format( + CURRENT_VERSION) + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) current_agent.mark_failure(is_fatal=True, reason=msg) except StopIteration: logger.warn( @@ -254,135 +444,113 @@ def __proceed_with_update(self, requested_version): # In case of an upgrade, we don't need to exclude anything as the daemon will automatically # start the next available highest version which would be the target version prefix = "upgrade" - raise AgentUpgradeExitException("Agent update found, exiting current process to {0} to the new Agent version {1}".format(prefix, requested_version)) + raise AgentUpgradeExitException( + "Agent completed all update checks, exiting current process to {0} to the new Agent version {1}".format(prefix, + self._version)) + + +class SelfUpdateVersionUpdater(GAVersionUpdater): @staticmethod - def __get_available_agents_on_disk(): - available_agents = [agent for agent in AgentUpdateHandler.__get_all_agents_on_disk() if agent.is_available] - return sorted(available_agents, key=lambda agent: agent.version, reverse=True) + def _get_largest_version(agent_manifest): + """ + Get the largest version from the agent manifest + """ + largest_version = FlexibleVersion("0.0.0.0") + for pkg in agent_manifest.pkg_list.versions: + pkg_version = FlexibleVersion(pkg.version) + if pkg_version > largest_version: + largest_version = pkg_version + return largest_version @staticmethod - def __get_all_agents_on_disk(): - path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) - return [GuestAgent.from_installed_agent(path=agent_dir) for agent_dir in glob.iglob(path) if os.path.isdir(agent_dir)] + def _get_agent_upgrade_type(version): + # We follow semantic versioning for the agent, if .. is same, then has changed. + # In this case, we consider it as a Hotfix upgrade. Else we consider it a Regular upgrade. + if version.major == CURRENT_VERSION.major and version.minor == CURRENT_VERSION.minor and version.patch == CURRENT_VERSION.patch: + return AgentUpgradeType.Hotfix + return AgentUpgradeType.Regular - def __check_if_downgrade_is_requested_and_allowed(self, requested_version): + def _get_next_upgrade_times(self, now): """ - Don't allow downgrades for self-update version - Note: The intention of this check is to keep the original behavior of self-update as it is. + Get the next upgrade times + return: Next Hotfix Upgrade Time, Next Regular Upgrade Time """ - if not self._is_requested_version_update: - if requested_version < CURRENT_VERSION: - return False - return True - @staticmethod - def __log_event(level, msg, success=True): - if level == LogLevel.INFO: - logger.info(msg) - elif level == LogLevel.WARNING: - logger.warn(msg) - elif level == LogLevel.ERROR: - logger.error(msg) - add_event(op=WALAEventOperation.AgentUpgrade, is_success=success, message=msg, log_event=False) + def get_next_process_time(last_val, frequency): + return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) - def run(self, goal_state): - try: - # Ignore new agents if update is disabled. The latter flag only used in e2e tests. - if not self._autoupdate_enabled or not conf.get_download_new_agents(): - return + next_hotfix_time = get_next_process_time(self._update_state.last_attempted_hotfix_update_time, + conf.get_hotfix_upgrade_frequency()) + next_regular_time = get_next_process_time(self._update_state.last_attempted_regular_update_time, + conf.get_regular_upgrade_frequency()) - self._gs_id = goal_state.extensions_goal_state.id - agent_family = self.__get_agent_family_manifests(goal_state) - requested_version = self.__get_requested_version(agent_family) - agent_manifest = None # This is to make sure fetch agent manifest once per update - warn_msg = "" - if requested_version is None: - # Do not proceed with update if self-update needs to download the manifest again with in an hour - if not self.__should_agent_attempt_manifest_download(): - return - if conf.get_enable_ga_versioning(): # log the warning only when ga versioning is enabled - # TODO: Need to revisit this msg when version is missing in Goal state. We may need to handle better way to report the error - warn_msg = "Missing requested version in agent family: {0} for incarnation: {1}, fallback to largest version update".format(self._ga_family, self._gs_id) - GAUpdateReportState.report_error_msg = warn_msg - agent_manifest = goal_state.fetch_agent_manifest(agent_family.name, agent_family.uris) - requested_version = self.__get_largest_version(agent_manifest) - self._is_requested_version_update = False - else: - self._is_requested_version_update = True - # Save the requested version to report back - GAUpdateReportState.report_expected_version = requested_version - # Remove the missing requested version warning once requested version becomes available - if "Missing requested version" in GAUpdateReportState.report_error_msg: - GAUpdateReportState.report_error_msg = "" - - # Check if an update is allowed and update next upgrade times even if no new agent is available for upgrade - if not self.__check_if_agent_update_allowed_and_update_next_upgrade_times(requested_version): - return + return next_hotfix_time, next_regular_time - if requested_version == CURRENT_VERSION: - return + def _is_update_allowed_this_time(self): + """ + This method ensure that update is allowed only once per (hotfix/Regular) upgrade frequency + """ + now = datetime.datetime.now() + next_hotfix_time, next_regular_time = self._get_next_upgrade_times(now) + upgrade_type = self._get_agent_upgrade_type(self._version) + + if (upgrade_type == AgentUpgradeType.Hotfix and next_hotfix_time <= now) or ( + upgrade_type == AgentUpgradeType.Regular and next_regular_time <= now): + # Update the last upgrade check time even if no new agent is available for upgrade + self._update_state.last_attempted_hotfix_update_time = now + self._update_state.last_attempted_regular_update_time = now + return True + return False - if warn_msg != "": - self.__log_event(LogLevel.WARNING, warn_msg) + def _should_agent_attempt_manifest_download(self): + """ + The agent should attempt to download the manifest if + the agent has not attempted to download the manifest in the last 1 hour + If we allow update, we update the last attempted manifest download time + """ + now = datetime.datetime.now() - # Downgrades are not allowed for self-update version - if not self.__check_if_downgrade_is_requested_and_allowed(requested_version): - return + if self._update_state.last_attempted_manifest_download_time != datetime.datetime.min: + next_attempt_time = self._update_state.last_attempted_manifest_download_time + datetime.timedelta(seconds=conf.get_autoupdate_frequency()) + else: + next_attempt_time = now - daemon_version = self.__get_daemon_version_for_update() - if requested_version < daemon_version: - # Don't process the update if the requested version is less than daemon version, - # as historically we don't support downgrades below daemon versions. So daemon will not pickup that requested version rather start with - # installed latest version again. When that happens agent go into loop of downloading the requested version, exiting and start again with same version. - # - raise AgentUpdateError("The Agent received a request to downgrade to version {0}, but downgrading to a version less than " - "the Agent installed on the image ({1}) is not supported. Skipping downgrade.".format(requested_version, daemon_version)) + if next_attempt_time > now: + return False + self._update_state.last_attempted_manifest_download_time = now + return True - # Todo: Need to update the message when we fix RSM stuff - msg = "Self-update discovered new agent version:{0} in agent manifest for goal state {1}, will update the agent before processing the goal state.".format( - str(requested_version), self._gs_id) - self.__log_event(LogLevel.INFO, msg) + def should_update_agent(self, goal_state): + # First we check if we allowed to download the manifest + if not self._should_agent_attempt_manifest_download(): + return False - agent = self.__download_and_get_agent(goal_state, agent_family, agent_manifest, requested_version) + # Fetch agent manifest to find largest version + self._agent_manifest = goal_state.fetch_agent_manifest(self._agent_family.name, self._agent_family.uris) + largest_version = self._get_largest_version(self._agent_manifest) + self._version = largest_version - if agent.is_blacklisted or not agent.is_downloaded: - msg = "Downloaded agent version is in bad state : {0} , skipping agent update".format( - str(agent.version)) - self.__log_event(LogLevel.WARNING, msg) - return + if not self._is_update_allowed_this_time(): + return False - # We delete the directory and the zip package from the filesystem except current version and target version - self.__purge_extra_agents_from_disk(CURRENT_VERSION, known_agents=[agent]) - self.__proceed_with_update(requested_version) + if self._version <= CURRENT_VERSION: + return False + return True - except Exception as err: - if isinstance(err, AgentUpgradeExitException): - raise err - elif isinstance(err, AgentUpdateError): - error_msg = ustr(err) - else: - error_msg = "Unable to update Agent: {0}".format(textutil.format_exception(err)) - self.__log_event(LogLevel.WARNING, error_msg, success=False) - if "Missing requested version" not in GAUpdateReportState.report_error_msg: - GAUpdateReportState.report_error_msg = error_msg + def log_new_agent_update_message(self): + msg = "Self-update discovered new agent version:{0} in agent manifest for goal state {1}, will update the agent before processing the goal state.".format( + str(self._version), self._gs_id) + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) - def get_vmagent_update_status(self): - """ - This function gets the VMAgent update status as per the last attempted update. - Returns: None if fail to report or update never attempted with requested version - """ - try: - if conf.get_enable_ga_versioning(): - if not GAUpdateReportState.report_error_msg: - status = VMAgentUpdateStatuses.Success - code = 0 - else: - status = VMAgentUpdateStatuses.Error - code = 1 - return VMAgentUpdateStatus(expected_version=str(GAUpdateReportState.report_expected_version), status=status, code=code, message=GAUpdateReportState.report_error_msg) - except Exception as err: - self.__log_event(LogLevel.WARNING, "Unable to report agent update status: {0}".format( - textutil.format_exception(err)), success=False) - return None + def purge_extra_agents_from_disk(self): + known_agents = [CURRENT_VERSION, self._version] + self._purge_unknown_agents_from_disk(known_agents) + + def proceed_with_update(self): + if self._version > CURRENT_VERSION: + # In case of an upgrade, we don't need to exclude anything as the daemon will automatically + # start the next available highest version which would be the target version + raise AgentUpgradeExitException("Agent completed all update checks, exiting current process to upgrade to the new Agent version {0}".format(self._version)) \ No newline at end of file diff --git a/azurelinuxagent/ga/guestagent.py b/azurelinuxagent/ga/guestagent.py index 56f3142447..35472c74a6 100644 --- a/azurelinuxagent/ga/guestagent.py +++ b/azurelinuxagent/ga/guestagent.py @@ -18,15 +18,6 @@ MAX_FAILURE = 3 # Max failure allowed for agent before declare bad agent -class GAUpdateReportState(object): - """ - This class is primarily used to maintain the in-memory persistent state for the agent updates. - This state will be persisted throughout the current service run and might be modified by external classes. - """ - report_error_msg = "" - report_expected_version = FlexibleVersion("0.0.0.0") - - class GuestAgent(object): def __init__(self, path, pkg, protocol, is_fast_track_goal_state): """ @@ -74,8 +65,6 @@ def __init__(self, path, pkg, protocol, is_fast_track_goal_state): msg = u"Agent {0} install failed with exception:".format( self.name) detailed_msg = '{0} {1}'.format(msg, textutil.format_exception(e)) - if "Missing requested version" not in GAUpdateReportState.report_error_msg: - GAUpdateReportState.report_error_msg = detailed_msg # capture the download errors to report back add_event( AGENT_NAME, version=self.version, diff --git a/runtime/cache/azure_locations_westus2.json b/runtime/cache/azure_locations_westus2.json new file mode 100644 index 0000000000..7e528c756d --- /dev/null +++ b/runtime/cache/azure_locations_westus2.json @@ -0,0 +1 @@ +{"updated_time": "2023-11-03T11:51:24.159209", "location": "westus2", "capabilities": {"AZAP_Harvest_Compute_2": {"location": "westus2", "vm_size": "AZAP_Harvest_Compute_2", "capability": {"type": "requirement", "name": "westus2_AZAP_Harvest_Compute_2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Harvest_Compute_2", "tier": "Standard", "size": "Harvest_Compute_2", "family": "azapHarvestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "48234496"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24117248"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "AZAP_Harvest_Compute_4": {"location": "westus2", "vm_size": "AZAP_Harvest_Compute_4", "capability": {"type": "requirement", "name": "westus2_AZAP_Harvest_Compute_4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Harvest_Compute_4", "tier": "Standard", "size": "Harvest_Compute_4", "family": "azapHarvestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "AZAP_Harvest_Compute_8": {"location": "westus2", "vm_size": "AZAP_Harvest_Compute_8", "capability": {"type": "requirement", "name": "westus2_AZAP_Harvest_Compute_8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Harvest_Compute_8", "tier": "Standard", "size": "Harvest_Compute_8", "family": "azapHarvestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "AZAP_Performance_ComputeGen6_1_96": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeGen6_1_96", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeGen6_1_96", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 169984, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeGen6_1_96", "tier": "Standard", "size": "Performance_ComputeGen6_1_96", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3145728"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "166"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 147456, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN", "tier": "Standard", "size": "Performance_ComputeIntelGen6_1CFpga_Search_FN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2245632"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "144"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_0CFpga_100": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_0CFpga_100", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_0CFpga_100", "is_default": false, "node_count": 1, "core_count": 100, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_0CFpga_100", "tier": "Standard", "size": "Performance_ComputeIntelGen7_0CFpga_100", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16420864"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "100"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "100"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_2B_Search_FN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_2B_Search_FN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_2B_Search_FN", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 294912, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_2B_Search_FN", "tier": "Standard", "size": "Performance_ComputeIntelGen7_2B_Search_FN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "119417856"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "288"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN", "is_default": false, "node_count": 1, "core_count": 50, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN", "tier": "Standard", "size": "Performance_ComputeIntelGen7_2CFpga_Search_PN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2197265"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "50"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "50"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_2C_Search_PN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_2C_Search_PN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_2C_Search_PN", "is_default": false, "node_count": 1, "core_count": 50, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_2C_Search_PN", "tier": "Standard", "size": "Performance_ComputeIntelGen7_2C_Search_PN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "12878417"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "50"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "50"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "AZAP_Performance_ComputeV17B_40": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17B_40", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17B_40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 235520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17B_40", "tier": "Standard", "size": "Performance_ComputeV17B_40", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "94371840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "230"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeV17B_76": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17B_76", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17B_76", "is_default": false, "node_count": 1, "core_count": 76, "memory_mb": 235520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17B_76", "tier": "Standard", "size": "Performance_ComputeV17B_76", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "94371840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "76"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "230"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeV17C_12": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17C_12", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17C_12", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 47247, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17C_12", "tier": "Standard", "size": "Performance_ComputeV17C_12", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "549756"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "46.14"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "AZAP_Performance_ComputeV17W_38_HalfNode": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17W_38_HalfNode", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17W_38_HalfNode", "is_default": false, "node_count": 1, "core_count": 38, "memory_mb": 58880, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17W_38_HalfNode", "tier": "Standard", "size": "Performance_ComputeV17W_38_HalfNode", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1600000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "38"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "57.5"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "AZAP_Performance_ComputeV17W_76": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17W_76", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17W_76", "is_default": false, "node_count": 1, "core_count": 76, "memory_mb": 117760, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17W_76", "tier": "Standard", "size": "Performance_ComputeV17W_76", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3200000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "76"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "115"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_Compute_Cosmos_Gen7_FN": {"location": "westus2", "vm_size": "AZAP_Performance_Compute_Cosmos_Gen7_FN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_Compute_Cosmos_Gen7_FN", "is_default": false, "node_count": 1, "core_count": 256, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_Compute_Cosmos_Gen7_FN", "tier": "Standard", "size": "Performance_Compute_Cosmos_Gen7_FN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "10253906"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "256"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "256"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Basic_A0": {"location": "westus2", "vm_size": "Basic_A0", "capability": {"type": "requirement", "name": "westus2_Basic_A0", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A0", "tier": "Basic", "size": "A0", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.75"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "50"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A1": {"location": "westus2", "vm_size": "Basic_A1", "capability": {"type": "requirement", "name": "westus2_Basic_A1", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1792, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A1", "tier": "Basic", "size": "A1", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "40960"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "1.75"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A2": {"location": "westus2", "vm_size": "Basic_A2", "capability": {"type": "requirement", "name": "westus2_Basic_A2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A2", "tier": "Basic", "size": "A2", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "61440"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A3": {"location": "westus2", "vm_size": "Basic_A3", "capability": {"type": "requirement", "name": "westus2_Basic_A3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A3", "tier": "Basic", "size": "A3", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "122880"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A4": {"location": "westus2", "vm_size": "Basic_A4", "capability": {"type": "requirement", "name": "westus2_Basic_A4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A4", "tier": "Basic", "size": "A4", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "245760"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "D16s_Flex": {"location": "westus2", "vm_size": "D16s_Flex", "capability": {"type": "requirement", "name": "westus2_D16s_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D16s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D16_Flex": {"location": "westus2", "vm_size": "D16_Flex", "capability": {"type": "requirement", "name": "westus2_D16_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D16_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D2s_Flex": {"location": "westus2", "vm_size": "D2s_Flex", "capability": {"type": "requirement", "name": "westus2_D2s_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D2s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D2_Flex": {"location": "westus2", "vm_size": "D2_Flex", "capability": {"type": "requirement", "name": "westus2_D2_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D2_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D32s_Flex": {"location": "westus2", "vm_size": "D32s_Flex", "capability": {"type": "requirement", "name": "westus2_D32s_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D32s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D32_Flex": {"location": "westus2", "vm_size": "D32_Flex", "capability": {"type": "requirement", "name": "westus2_D32_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D32_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D4s_Flex": {"location": "westus2", "vm_size": "D4s_Flex", "capability": {"type": "requirement", "name": "westus2_D4s_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D4s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D4_Flex": {"location": "westus2", "vm_size": "D4_Flex", "capability": {"type": "requirement", "name": "westus2_D4_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D4_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D64s_Flex": {"location": "westus2", "vm_size": "D64s_Flex", "capability": {"type": "requirement", "name": "westus2_D64s_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D64s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D64_Flex": {"location": "westus2", "vm_size": "D64_Flex", "capability": {"type": "requirement", "name": "westus2_D64_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D64_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D8s_Flex": {"location": "westus2", "vm_size": "D8s_Flex", "capability": {"type": "requirement", "name": "westus2_D8s_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D8s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "D8_Flex": {"location": "westus2", "vm_size": "D8_Flex", "capability": {"type": "requirement", "name": "westus2_D8_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D8_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "E16s_Flex": {"location": "westus2", "vm_size": "E16s_Flex", "capability": {"type": "requirement", "name": "westus2_E16s_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E16s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E16_Flex": {"location": "westus2", "vm_size": "E16_Flex", "capability": {"type": "requirement", "name": "westus2_E16_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E16_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E20s_Flex": {"location": "westus2", "vm_size": "E20s_Flex", "capability": {"type": "requirement", "name": "westus2_E20s_Flex", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E20s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "327680000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "327680000"}, {"name": "CachedDiskBytes", "value": "536870912000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E20_Flex": {"location": "westus2", "vm_size": "E20_Flex", "capability": {"type": "requirement", "name": "westus2_E20_Flex", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E20_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "30000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "491520000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "245760000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E2s_Flex": {"location": "westus2", "vm_size": "E2s_Flex", "capability": {"type": "requirement", "name": "westus2_E2s_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E2s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E2_Flex": {"location": "westus2", "vm_size": "E2_Flex", "capability": {"type": "requirement", "name": "westus2_E2_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E2_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E32s_Flex": {"location": "westus2", "vm_size": "E32s_Flex", "capability": {"type": "requirement", "name": "westus2_E32s_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E32s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E32_Flex": {"location": "westus2", "vm_size": "E32_Flex", "capability": {"type": "requirement", "name": "westus2_E32_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E32_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E4s_Flex": {"location": "westus2", "vm_size": "E4s_Flex", "capability": {"type": "requirement", "name": "westus2_E4s_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E4s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E4_Flex": {"location": "westus2", "vm_size": "E4_Flex", "capability": {"type": "requirement", "name": "westus2_E4_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E4_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E64s_Flex": {"location": "westus2", "vm_size": "E64s_Flex", "capability": {"type": "requirement", "name": "westus2_E64s_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E64s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E64_Flex": {"location": "westus2", "vm_size": "E64_Flex", "capability": {"type": "requirement", "name": "westus2_E64_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E64_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E8s_Flex": {"location": "westus2", "vm_size": "E8s_Flex", "capability": {"type": "requirement", "name": "westus2_E8s_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E8s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "E8_Flex": {"location": "westus2", "vm_size": "E8_Flex", "capability": {"type": "requirement", "name": "westus2_E8_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E8_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT0": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT0", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT0", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT0", "tier": "Standard", "size": "OVLTest_CurrentT0", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "72704"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "5500"}, {"name": "UncachedDiskBytesPerSecond", "value": "156000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT1": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT1", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT1", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT1", "tier": "Standard", "size": "OVLTest_CurrentT1", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "145408"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "11000"}, {"name": "UncachedDiskBytesPerSecond", "value": "350000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT2": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT2", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT2", "tier": "Standard", "size": "OVLTest_CurrentT2", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "291840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "22000"}, {"name": "UncachedDiskBytesPerSecond", "value": "625000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT3": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT3", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT3", "tier": "Standard", "size": "OVLTest_CurrentT3", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "584704"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "44000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1250000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT4": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT4", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT4", "tier": "Standard", "size": "OVLTest_CurrentT4", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1169408"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "88000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT5": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT5", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT5", "tier": "Standard", "size": "OVLTest_CurrentT5", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1755136"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "132000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT6": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT6", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT6", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT6", "tier": "Standard", "size": "OVLTest_CurrentT6", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2339840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "176000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT7": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT7", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT7", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT7", "tier": "Standard", "size": "OVLTest_CurrentT7", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3510272"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT8": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT8", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT8", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT8", "tier": "Standard", "size": "OVLTest_CurrentT8", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT9": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT9", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT9", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT9", "tier": "Standard", "size": "OVLTest_CurrentT9", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "ExtraLarge_Internal": {"location": "westus2", "vm_size": "ExtraLarge_Internal", "capability": {"type": "requirement", "name": "westus2_ExtraLarge_Internal", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "ExtraLarge_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "366592"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "ExtraSmall_Internal": {"location": "westus2", "vm_size": "ExtraSmall_Internal", "capability": {"type": "requirement", "name": "westus2_ExtraSmall_Internal", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "ExtraSmall_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.75"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "F16s_Flex": {"location": "westus2", "vm_size": "F16s_Flex", "capability": {"type": "requirement", "name": "westus2_F16s_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F16s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "274877906944"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F16_Flex": {"location": "westus2", "vm_size": "F16_Flex", "capability": {"type": "requirement", "name": "westus2_F16_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F16_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F2s_Flex": {"location": "westus2", "vm_size": "F2s_Flex", "capability": {"type": "requirement", "name": "westus2_F2s_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F2s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F2_Flex": {"location": "westus2", "vm_size": "F2_Flex", "capability": {"type": "requirement", "name": "westus2_F2_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F2_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "49152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F32s_Flex": {"location": "westus2", "vm_size": "F32s_Flex", "capability": {"type": "requirement", "name": "westus2_F32s_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F32s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "549755813888"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F32_Flex": {"location": "westus2", "vm_size": "F32_Flex", "capability": {"type": "requirement", "name": "westus2_F32_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F32_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F4s_Flex": {"location": "westus2", "vm_size": "F4s_Flex", "capability": {"type": "requirement", "name": "westus2_F4s_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F4s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F4_Flex": {"location": "westus2", "vm_size": "F4_Flex", "capability": {"type": "requirement", "name": "westus2_F4_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F4_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "98304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F64s_Flex": {"location": "westus2", "vm_size": "F64s_Flex", "capability": {"type": "requirement", "name": "westus2_F64s_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F64s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F64_Flex": {"location": "westus2", "vm_size": "F64_Flex", "capability": {"type": "requirement", "name": "westus2_F64_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F64_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1572864"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1572864000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "786432000"}, {"name": "UncachedDiskIOPS", "value": "102400"}, {"name": "UncachedDiskBytesPerSecond", "value": "1536000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F8s_Flex": {"location": "westus2", "vm_size": "F8s_Flex", "capability": {"type": "requirement", "name": "westus2_F8s_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F8s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "F8_Flex": {"location": "westus2", "vm_size": "F8_Flex", "capability": {"type": "requirement", "name": "westus2_F8_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F8_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "196608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "FCA_E16-10s_v3": {"location": "westus2", "vm_size": "FCA_E16-10s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E16-10s_v3", "is_default": false, "node_count": 1, "core_count": 10, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E16-10s_v3", "tier": "Standard", "size": "E16-10s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "10"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E16-12s_v3": {"location": "westus2", "vm_size": "FCA_E16-12s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E16-12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E16-12s_v3", "tier": "Standard", "size": "E16-12s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E16-14s_v3": {"location": "westus2", "vm_size": "FCA_E16-14s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E16-14s_v3", "is_default": false, "node_count": 1, "core_count": 14, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E16-14s_v3", "tier": "Standard", "size": "E16-14s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "14"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E32-24s_v3": {"location": "westus2", "vm_size": "FCA_E32-24s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E32-24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E32-24s_v3", "tier": "Standard", "size": "E32-24s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E32-26s_v3": {"location": "westus2", "vm_size": "FCA_E32-26s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E32-26s_v3", "is_default": false, "node_count": 1, "core_count": 26, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E32-26s_v3", "tier": "Standard", "size": "E32-26s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "26"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E32-28s_v3": {"location": "westus2", "vm_size": "FCA_E32-28s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E32-28s_v3", "is_default": false, "node_count": 1, "core_count": 28, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E32-28s_v3", "tier": "Standard", "size": "E32-28s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "28"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E64-52s_v3": {"location": "westus2", "vm_size": "FCA_E64-52s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E64-52s_v3", "is_default": false, "node_count": 1, "core_count": 52, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E64-52s_v3", "tier": "Standard", "size": "E64-52s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "52"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E8-6s_v3": {"location": "westus2", "vm_size": "FCA_E8-6s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E8-6s_v3", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E8-6s_v3", "tier": "Standard", "size": "E8-6s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E8s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Harvest_E2s_v3": {"location": "westus2", "vm_size": "Harvest_E2s_v3", "capability": {"type": "requirement", "name": "westus2_Harvest_E2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Harvest_E2s_v3", "tier": "Standard", "size": "E2s_v3", "family": "harvestESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Harvest_E4s_v3": {"location": "westus2", "vm_size": "Harvest_E4s_v3", "capability": {"type": "requirement", "name": "westus2_Harvest_E4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Harvest_E4s_v3", "tier": "Standard", "size": "E4s_v3", "family": "harvestESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Harvest_E8s_v3": {"location": "westus2", "vm_size": "Harvest_E8s_v3", "capability": {"type": "requirement", "name": "westus2_Harvest_E8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Harvest_E8s_v3", "tier": "Standard", "size": "E8s_v3", "family": "harvestESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_A1Web35_v2_Gen2": {"location": "westus2", "vm_size": "Internal_A1Web35_v2_Gen2", "capability": {"type": "requirement", "name": "westus2_Internal_A1Web35_v2_Gen2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_A1Web35_v2_Gen2", "tier": "Standard", "size": "A1Web35_v2_Gen2", "family": "internalAv2WebGen2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "35840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_A2Web45_v2_Gen2": {"location": "westus2", "vm_size": "Internal_A2Web45_v2_Gen2", "capability": {"type": "requirement", "name": "westus2_Internal_A2Web45_v2_Gen2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_A2Web45_v2_Gen2", "tier": "Standard", "size": "A2Web45_v2_Gen2", "family": "internalAv2WebGen2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "46080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_A4Web_v2_Gen2": {"location": "westus2", "vm_size": "Internal_A4Web_v2_Gen2", "capability": {"type": "requirement", "name": "westus2_Internal_A4Web_v2_Gen2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_A4Web_v2_Gen2", "tier": "Standard", "size": "A4Web_v2_Gen2", "family": "internalAv2WebGen2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_ACCGen8MMv2_64id": {"location": "westus2", "vm_size": "Internal_ACCGen8MMv2_64id", "capability": {"type": "requirement", "name": "westus2_Internal_ACCGen8MMv2_64id", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_ACCGen8MMv2_64id", "tier": "Standard", "size": "ACCGen8MMv2_64id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_ACCGen8MM_64id": {"location": "westus2", "vm_size": "Internal_ACCGen8MM_64id", "capability": {"type": "requirement", "name": "westus2_Internal_ACCGen8MM_64id", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_ACCGen8MM_64id", "tier": "Standard", "size": "ACCGen8MM_64id", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16ads_v5": {"location": "westus2", "vm_size": "Internal_D16ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16ads_v5", "tier": "Standard", "size": "D16ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16alds_v5": {"location": "westus2", "vm_size": "Internal_D16alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16alds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16alds_v5", "tier": "Standard", "size": "D16alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "274878000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16als_v5": {"location": "westus2", "vm_size": "Internal_D16als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16als_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16als_v5", "tier": "Standard", "size": "D16als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D16as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D16as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16as_v4_NoDwnclk", "tier": "Standard", "size": "D16as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16as_v5": {"location": "westus2", "vm_size": "Internal_D16as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16as_v5", "tier": "Standard", "size": "D16as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D16s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D16s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16s_v3_NoDwnclk", "tier": "Standard", "size": "D16s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D2ads_v5": {"location": "westus2", "vm_size": "Internal_D2ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2ads_v5", "tier": "Standard", "size": "D2ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2alds_v5": {"location": "westus2", "vm_size": "Internal_D2alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2alds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2alds_v5", "tier": "Standard", "size": "D2alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2als_v5": {"location": "westus2", "vm_size": "Internal_D2als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2als_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2als_v5", "tier": "Standard", "size": "D2als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D2as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D2as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2as_v4_NoDwnclk", "tier": "Standard", "size": "D2as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2as_v5": {"location": "westus2", "vm_size": "Internal_D2as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2as_v5", "tier": "Standard", "size": "D2as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D2s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D2s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2s_v3_NoDwnclk", "tier": "Standard", "size": "D2s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D32ads_v5": {"location": "westus2", "vm_size": "Internal_D32ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32ads_v5", "tier": "Standard", "size": "D32ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32alds_v5": {"location": "westus2", "vm_size": "Internal_D32alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32alds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32alds_v5", "tier": "Standard", "size": "D32alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "549756000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32als_v5": {"location": "westus2", "vm_size": "Internal_D32als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32als_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32als_v5", "tier": "Standard", "size": "D32als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D32as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D32as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32as_v4_NoDwnclk", "tier": "Standard", "size": "D32as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32as_v5": {"location": "westus2", "vm_size": "Internal_D32as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32as_v5", "tier": "Standard", "size": "D32as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D32s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D32s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32s_v3_NoDwnclk", "tier": "Standard", "size": "D32s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48ads_v5": {"location": "westus2", "vm_size": "Internal_D48ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48ads_v5", "tier": "Standard", "size": "D48ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1288490000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48alds_v5": {"location": "westus2", "vm_size": "Internal_D48alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48alds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48alds_v5", "tier": "Standard", "size": "D48alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "824634000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48als_v5": {"location": "westus2", "vm_size": "Internal_D48als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48als_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48als_v5", "tier": "Standard", "size": "D48als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D48as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D48as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48as_v4_NoDwnclk", "tier": "Standard", "size": "D48as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1148000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48as_v5": {"location": "westus2", "vm_size": "Internal_D48as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48as_v5", "tier": "Standard", "size": "D48as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D48s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D48s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48s_v3_NoDwnclk", "tier": "Standard", "size": "D48s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "786000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D4ads_v5": {"location": "westus2", "vm_size": "Internal_D4ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4ads_v5", "tier": "Standard", "size": "D4ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4alds_v5": {"location": "westus2", "vm_size": "Internal_D4alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4alds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4alds_v5", "tier": "Standard", "size": "D4alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4als_v5": {"location": "westus2", "vm_size": "Internal_D4als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4als_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4als_v5", "tier": "Standard", "size": "D4als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D4as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D4as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4as_v4_NoDwnclk", "tier": "Standard", "size": "D4as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "66000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "66000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4as_v5": {"location": "westus2", "vm_size": "Internal_D4as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4as_v5", "tier": "Standard", "size": "D4as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D4s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D4s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4s_v3_NoDwnclk", "tier": "Standard", "size": "D4s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "66000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "66000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D64ads_v5": {"location": "westus2", "vm_size": "Internal_D64ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64ads_v5", "tier": "Standard", "size": "D64ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64alds_v5": {"location": "westus2", "vm_size": "Internal_D64alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64alds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64alds_v5", "tier": "Standard", "size": "D64alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64als_v5": {"location": "westus2", "vm_size": "Internal_D64als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64als_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64als_v5", "tier": "Standard", "size": "D64als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D64as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D64as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64as_v4_NoDwnclk", "tier": "Standard", "size": "D64as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64as_v5": {"location": "westus2", "vm_size": "Internal_D64as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64as_v5", "tier": "Standard", "size": "D64as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D64s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D64s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64s_v3_NoDwnclk", "tier": "Standard", "size": "D64s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D8ads_v5": {"location": "westus2", "vm_size": "Internal_D8ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8ads_v5", "tier": "Standard", "size": "D8ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8alds_v5": {"location": "westus2", "vm_size": "Internal_D8alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8alds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8alds_v5", "tier": "Standard", "size": "D8alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "137439000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8als_v5": {"location": "westus2", "vm_size": "Internal_D8als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8als_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8als_v5", "tier": "Standard", "size": "D8als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D8as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D8as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8as_v4_NoDwnclk", "tier": "Standard", "size": "D8as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8as_v5": {"location": "westus2", "vm_size": "Internal_D8as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8as_v5", "tier": "Standard", "size": "D8as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D8s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D8s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8s_v3_NoDwnclk", "tier": "Standard", "size": "D8s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D96ads_v5": {"location": "westus2", "vm_size": "Internal_D96ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96ads_v5", "tier": "Standard", "size": "D96ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96alds_v5": {"location": "westus2", "vm_size": "Internal_D96alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96alds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96alds_v5", "tier": "Standard", "size": "D96alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96als_v5": {"location": "westus2", "vm_size": "Internal_D96als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96als_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96als_v5", "tier": "Standard", "size": "D96als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D96as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D96as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96as_v4_NoDwnclk", "tier": "Standard", "size": "D96as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "2576980377600"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96as_v5": {"location": "westus2", "vm_size": "Internal_D96as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96as_v5", "tier": "Standard", "size": "D96as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E16ads_v5": {"location": "westus2", "vm_size": "Internal_E16ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E16ads_v5", "tier": "Standard", "size": "E16ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E16as_v5": {"location": "westus2", "vm_size": "Internal_E16as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E16as_v5", "tier": "Standard", "size": "E16as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E20ads_v5": {"location": "westus2", "vm_size": "Internal_E20ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E20ads_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E20ads_v5", "tier": "Standard", "size": "E20ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "327680000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "327680000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E20as_v5": {"location": "westus2", "vm_size": "Internal_E20as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E20as_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E20as_v5", "tier": "Standard", "size": "E20as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E2ads_v5": {"location": "westus2", "vm_size": "Internal_E2ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E2ads_v5", "tier": "Standard", "size": "E2ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E2as_v5": {"location": "westus2", "vm_size": "Internal_E2as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E2as_v5", "tier": "Standard", "size": "E2as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E32ads_v5": {"location": "westus2", "vm_size": "Internal_E32ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E32ads_v5", "tier": "Standard", "size": "E32ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E32as_v5": {"location": "westus2", "vm_size": "Internal_E32as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E32as_v5", "tier": "Standard", "size": "E32as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E48ads_v5": {"location": "westus2", "vm_size": "Internal_E48ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E48ads_v5", "tier": "Standard", "size": "E48ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1288490000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E48as_v5": {"location": "westus2", "vm_size": "Internal_E48as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E48as_v5", "tier": "Standard", "size": "E48as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E4ads_v5": {"location": "westus2", "vm_size": "Internal_E4ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E4ads_v5", "tier": "Standard", "size": "E4ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E4as_v5": {"location": "westus2", "vm_size": "Internal_E4as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E4as_v5", "tier": "Standard", "size": "E4as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E64ads_v5": {"location": "westus2", "vm_size": "Internal_E64ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E64ads_v5", "tier": "Standard", "size": "E64ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E64as_v5": {"location": "westus2", "vm_size": "Internal_E64as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E64as_v5", "tier": "Standard", "size": "E64as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E8ads_v5": {"location": "westus2", "vm_size": "Internal_E8ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E8ads_v5", "tier": "Standard", "size": "E8ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_E8as_v5": {"location": "westus2", "vm_size": "Internal_E8as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E8as_v5", "tier": "Standard", "size": "E8as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_E96ads_v5": {"location": "westus2", "vm_size": "Internal_E96ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E96ads_v5", "tier": "Standard", "size": "E96ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E96as_v5": {"location": "westus2", "vm_size": "Internal_E96as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E96as_v5", "tier": "Standard", "size": "E96as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen7_IaaS_LI": {"location": "westus2", "vm_size": "Internal_Gen7_IaaS_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen7_IaaS_LI", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen7_IaaS_LI", "tier": "Standard", "size": "Gen7_IaaS_LI", "family": "internalLIG7SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_LM_32ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_LM_32ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_LM_32ds_LI", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_LM_32ds_LI", "tier": "Standard", "size": "Gen8_LM_32ds_LI", "family": "internalG8LMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "8000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "8000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865375000"}, {"name": "NvmeDiskSizeInMiB", "value": "2747139"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_LM_64ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_LM_64ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_LM_64ds_LI", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 327680, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_LM_64ds_LI", "tier": "Standard", "size": "Gen8_LM_64ds_LI", "family": "internalG8LMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "320"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "16000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "16000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1734800000"}, {"name": "NvmeDiskSizeInMiB", "value": "915713"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM2_128ids_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM2_128ids_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM2_128ids_LI", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM2_128ids_LI", "tier": "Standard", "size": "Gen8_MM2_128ids_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "6408689"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM2_32ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM2_32ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM2_32ds_LI", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM2_32ds_LI", "tier": "Standard", "size": "Gen8_MM2_32ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "866000000"}, {"name": "NvmeDiskSizeInMiB", "value": "2746581"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM2_64ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM2_64ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM2_64ds_LI", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 557056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM2_64ds_LI", "tier": "Standard", "size": "Gen8_MM2_64ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "544"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "320000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "320000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1736000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM_32ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM_32ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM_32ds_LI", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM_32ds_LI", "tier": "Standard", "size": "Gen8_MM_32ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "8000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "8000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865375000"}, {"name": "NvmeDiskSizeInMiB", "value": "6409990"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM_96ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM_96ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM_96ds_LI", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 425984, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM_96ds_LI", "tier": "Standard", "size": "Gen8_MM_96ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "416"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "24000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2599600000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HHv2_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8HHv2_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HHv2_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HHv2_128iad", "tier": "Standard", "size": "GPGen8HHv2_128iad", "family": "internalG8HHV2AMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "20141601"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HHv2_128id": {"location": "westus2", "vm_size": "Internal_GPGen8HHv2_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HHv2_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HHv2_128id", "tier": "Standard", "size": "GPGen8HHv2_128id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "20141601"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HH_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8HH_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HH_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HH_128iad", "tier": "Standard", "size": "GPGen8HH_128iad", "family": "internalG8HHAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1020000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1020000000"}, {"name": "CachedDiskBytes", "value": "5859374"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HH_128id": {"location": "westus2", "vm_size": "Internal_GPGen8HH_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HH_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HH_128id", "tier": "Standard", "size": "GPGen8HH_128id", "family": "internalG8HHSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3870000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3870000000"}, {"name": "CachedDiskBytes", "value": "5859374"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HH_128id_IaaS": {"location": "westus2", "vm_size": "Internal_GPGen8HH_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HH_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HH_128id_IaaS", "tier": "Standard", "size": "GPGen8HH_128id_IaaS", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LMv2_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8LMv2_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LMv2_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LMv2_128iad", "tier": "Standard", "size": "GPGen8LMv2_128iad", "family": "internalG8LMV2AMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "6408691"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LMv2_128id": {"location": "westus2", "vm_size": "Internal_GPGen8LMv2_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LMv2_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LMv2_128id", "tier": "Standard", "size": "GPGen8LMv2_128id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LM_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8LM_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LM_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LM_128iad", "tier": "Standard", "size": "GPGen8LM_128iad", "family": "internalG8LMAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3076170"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1020000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1020000000"}, {"name": "CachedDiskBytes", "value": "2050780"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LM_128id": {"location": "westus2", "vm_size": "Internal_GPGen8LM_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LM_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LM_128id", "tier": "Standard", "size": "GPGen8LM_128id", "family": "internalG8LMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3870000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3870000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LM_128id_IaaS": {"location": "westus2", "vm_size": "Internal_GPGen8LM_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LM_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LM_128id_IaaS", "tier": "Standard", "size": "GPGen8LM_128id_IaaS", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MH_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8MH_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MH_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MH_128iad", "tier": "Standard", "size": "GPGen8MH_128iad", "family": "internalGPGen8MHAMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "537600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MH_64ad": {"location": "westus2", "vm_size": "Internal_GPGen8MH_64ad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MH_64ad", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 344064, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MH_64ad", "tier": "Standard", "size": "GPGen8MH_64ad", "family": "internalGPGen8MHAMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "268288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "336"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MMv2_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8MMv2_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MMv2_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MMv2_128iad", "tier": "Standard", "size": "GPGen8MMv2_128iad", "family": "internalG8MMV2AMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "6408691"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MMv2_128id": {"location": "westus2", "vm_size": "Internal_GPGen8MMv2_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MMv2_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MMv2_128id", "tier": "Standard", "size": "GPGen8MMv2_128id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MM_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8MM_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MM_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MM_128iad", "tier": "Standard", "size": "GPGen8MM_128iad", "family": "internalG8MMAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3076170"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1020000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1020000000"}, {"name": "CachedDiskBytes", "value": "2050780"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MM_128id": {"location": "westus2", "vm_size": "Internal_GPGen8MM_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MM_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MM_128id", "tier": "Standard", "size": "GPGen8MM_128id", "family": "internalG8MMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3870000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3870000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MM_128id_IaaS": {"location": "westus2", "vm_size": "Internal_GPGen8MM_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MM_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MM_128id_IaaS", "tier": "Standard", "size": "GPGen8MM_128id_IaaS", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_L128is_v2": {"location": "westus2", "vm_size": "Internal_L128is_v2", "capability": {"type": "requirement", "name": "westus2_Internal_L128is_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 10, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 10, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_L128is_v2", "tier": "Standard", "size": "L128is_v2", "family": "internalLISv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "10"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5Cv2_128ids": {"location": "westus2", "vm_size": "Internal_NPG5Cv2_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5Cv2_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5Cv2_128ids", "tier": "Standard", "size": "NPG5Cv2_128ids", "family": "internalGen8NPIDFV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128d": {"location": "westus2", "vm_size": "Internal_NPG5C_128d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128d", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128d", "tier": "Standard", "size": "NPG5C_128d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5828608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "400000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128ds": {"location": "westus2", "vm_size": "Internal_NPG5C_128ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128ds", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128ds", "tier": "Standard", "size": "NPG5C_128ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5828608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "400000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128id": {"location": "westus2", "vm_size": "Internal_NPG5C_128id", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128id", "tier": "Standard", "size": "NPG5C_128id", "family": "internalSQLG8NPIDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128ids": {"location": "westus2", "vm_size": "Internal_NPG5C_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128ids", "tier": "Standard", "size": "NPG5C_128ids", "family": "internalSQLG8NPIDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128ids_IaaS": {"location": "westus2", "vm_size": "Internal_NPG5C_128ids_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128ids_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128ids_IaaS", "tier": "Standard", "size": "NPG5C_128ids_IaaS", "family": "internalGen8NPDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128id_IaaS": {"location": "westus2", "vm_size": "Internal_NPG5C_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128id_IaaS", "tier": "Standard", "size": "NPG5C_128id_IaaS", "family": "internalGen8NPDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_16d": {"location": "westus2", "vm_size": "Internal_NPG5C_16d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_16d", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 90112, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_16d", "tier": "Standard", "size": "NPG5C_16d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "824320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "88"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "382500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_16ds": {"location": "westus2", "vm_size": "Internal_NPG5C_16ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_16ds", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 90112, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_16ds", "tier": "Standard", "size": "NPG5C_16ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "824320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "88"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "402653184"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_24d": {"location": "westus2", "vm_size": "Internal_NPG5C_24d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_24d", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 135168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_24d", "tier": "Standard", "size": "NPG5C_24d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1236992"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "132"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "765000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_24ds": {"location": "westus2", "vm_size": "Internal_NPG5C_24ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_24ds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 135168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_24ds", "tier": "Standard", "size": "NPG5C_24ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1236992"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "132"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1207959552"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "603979776"}, {"name": "UncachedDiskIOPS", "value": "38400"}, {"name": "UncachedDiskBytesPerSecond", "value": "576000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_2d": {"location": "westus2", "vm_size": "Internal_NPG5C_2d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_2d", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_2d", "tier": "Standard", "size": "NPG5C_2d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "47812"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_2ds": {"location": "westus2", "vm_size": "Internal_NPG5C_2ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_2ds", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_2ds", "tier": "Standard", "size": "NPG5C_2ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_32d": {"location": "westus2", "vm_size": "Internal_NPG5C_32d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_32d", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_32d", "tier": "Standard", "size": "NPG5C_32d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1649664"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1147500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_32ds": {"location": "westus2", "vm_size": "Internal_NPG5C_32ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_32ds", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_32ds", "tier": "Standard", "size": "NPG5C_32ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1649664"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1610612736"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_40d": {"location": "westus2", "vm_size": "Internal_NPG5C_40d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_40d", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_40d", "tier": "Standard", "size": "NPG5C_40d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2062336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_40ds": {"location": "westus2", "vm_size": "Internal_NPG5C_40ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_40ds", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_40ds", "tier": "Standard", "size": "NPG5C_40ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2062336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2013265920"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1006632960"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "960000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_4d": {"location": "westus2", "vm_size": "Internal_NPG5C_4d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_4d", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_4d", "tier": "Standard", "size": "NPG5C_4d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "205824"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "95625"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_4ds": {"location": "westus2", "vm_size": "Internal_NPG5C_4ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_4ds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_4ds", "tier": "Standard", "size": "NPG5C_4ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "205824"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "201326592"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100663296"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_64d": {"location": "westus2", "vm_size": "Internal_NPG5C_64d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_64d", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_64d", "tier": "Standard", "size": "NPG5C_64d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3300352"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_64ds": {"location": "westus2", "vm_size": "Internal_NPG5C_64ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_64ds", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_64ds", "tier": "Standard", "size": "NPG5C_64ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3300352"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "256000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3221225472"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1610612736"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_80d": {"location": "westus2", "vm_size": "Internal_NPG5C_80d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_80d", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_80d", "tier": "Standard", "size": "NPG5C_80d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4124672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_80ds": {"location": "westus2", "vm_size": "Internal_NPG5C_80ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_80ds", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_80ds", "tier": "Standard", "size": "NPG5C_80ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4124672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "320000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4026531840"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2013265920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_8d": {"location": "westus2", "vm_size": "Internal_NPG5C_8d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_8d", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 45056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_8d", "tier": "Standard", "size": "NPG5C_8d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "411648"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "44"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191250"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_NPG5C_8ds": {"location": "westus2", "vm_size": "Internal_NPG5C_8ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_8ds", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 45056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_8ds", "tier": "Standard", "size": "NPG5C_8ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "411648"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "44"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "402653184"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "201326592"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_NPHHv2_128ids": {"location": "westus2", "vm_size": "Internal_NPHHv2_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPHHv2_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHHv2_128ids", "tier": "Standard", "size": "NPHHv2_128ids", "family": "internalGen8NPIDFV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "20141601"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_104ds": {"location": "westus2", "vm_size": "Internal_NPHH_104ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_104ds", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 745472, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_104ds", "tier": "Standard", "size": "NPHH_104ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "14057472"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "728"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_128ds": {"location": "westus2", "vm_size": "Internal_NPHH_128ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_128ds", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_128ds", "tier": "Standard", "size": "NPHH_128ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16081920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_128ids": {"location": "westus2", "vm_size": "Internal_NPHH_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_128ids", "tier": "Standard", "size": "NPHH_128ids", "family": "internalSQLG8NPIDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "CachedDiskBytes", "value": "5859374"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_128ids_IaaS": {"location": "westus2", "vm_size": "Internal_NPHH_128ids_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_128ids_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_128ids_IaaS", "tier": "Standard", "size": "NPHH_128ids_IaaS", "family": "internalGen8NPIDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_16ds": {"location": "westus2", "vm_size": "Internal_NPHH_16ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_16ds", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_16ds", "tier": "Standard", "size": "NPHH_16ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2162688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "382500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_24ds": {"location": "westus2", "vm_size": "Internal_NPHH_24ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_24ds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 172032, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_24ds", "tier": "Standard", "size": "NPHH_24ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3244032"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "168"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "765000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_2ds": {"location": "westus2", "vm_size": "Internal_NPHH_2ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_2ds", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_2ds", "tier": "Standard", "size": "NPHH_2ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "270336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "47812"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPHH_32ds": {"location": "westus2", "vm_size": "Internal_NPHH_32ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_32ds", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_32ds", "tier": "Standard", "size": "NPHH_32ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4325376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1147500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_40ds": {"location": "westus2", "vm_size": "Internal_NPHH_40ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_40ds", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 286720, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_40ds", "tier": "Standard", "size": "NPHH_40ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5406720"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "280"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_48ds": {"location": "westus2", "vm_size": "Internal_NPHH_48ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_48ds", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 344064, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_48ds", "tier": "Standard", "size": "NPHH_48ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "6488064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "336"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_4ds": {"location": "westus2", "vm_size": "Internal_NPHH_4ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_4ds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_4ds", "tier": "Standard", "size": "NPHH_4ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "540672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "95625"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPHH_64ds": {"location": "westus2", "vm_size": "Internal_NPHH_64ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_64ds", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_64ds", "tier": "Standard", "size": "NPHH_64ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8650752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_80ds": {"location": "westus2", "vm_size": "Internal_NPHH_80ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_80ds", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 573440, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_80ds", "tier": "Standard", "size": "NPHH_80ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "10813440"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "560"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_8ds": {"location": "westus2", "vm_size": "Internal_NPHH_8ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_8ds", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_8ds", "tier": "Standard", "size": "NPHH_8ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1081344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191250"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_NPMMv2_128ids": {"location": "westus2", "vm_size": "Internal_NPMMv2_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPMMv2_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMMv2_128ids", "tier": "Standard", "size": "NPMMv2_128ids", "family": "internalGen8NPIDFV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_128ds": {"location": "westus2", "vm_size": "Internal_NPMM_128ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_128ds", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_128ds", "tier": "Standard", "size": "NPMM_128ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5828608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_128ids": {"location": "westus2", "vm_size": "Internal_NPMM_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_128ids", "tier": "Standard", "size": "NPMM_128ids", "family": "internalSQLG8NPIDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_128ids_IaaS": {"location": "westus2", "vm_size": "Internal_NPMM_128ids_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_128ids_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_128ids_IaaS", "tier": "Standard", "size": "NPMM_128ids_IaaS", "family": "internalGen8NPIDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_16ds": {"location": "westus2", "vm_size": "Internal_NPMM_16ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_16ds", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 121241, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_16ds", "tier": "Standard", "size": "NPMM_16ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1118208"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "118.4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "382500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_24ds": {"location": "westus2", "vm_size": "Internal_NPMM_24ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_24ds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 181862, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_24ds", "tier": "Standard", "size": "NPMM_24ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1677312"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "177.6"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "765000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_2ds": {"location": "westus2", "vm_size": "Internal_NPMM_2ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_2ds", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 15155, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_2ds", "tier": "Standard", "size": "NPMM_2ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "139264"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14.8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "47812"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPMM_32ds": {"location": "westus2", "vm_size": "Internal_NPMM_32ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_32ds", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 242483, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_32ds", "tier": "Standard", "size": "NPMM_32ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2236416"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "236.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1147500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_40ds": {"location": "westus2", "vm_size": "Internal_NPMM_40ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_40ds", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 303104, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_40ds", "tier": "Standard", "size": "NPMM_40ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2795520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "296"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_4ds": {"location": "westus2", "vm_size": "Internal_NPMM_4ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_4ds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 30310, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_4ds", "tier": "Standard", "size": "NPMM_4ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "279552"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "29.6"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "95625"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPMM_64ds": {"location": "westus2", "vm_size": "Internal_NPMM_64ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_64ds", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 484966, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_64ds", "tier": "Standard", "size": "NPMM_64ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4473856"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "473.6"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_80ds": {"location": "westus2", "vm_size": "Internal_NPMM_80ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_80ds", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 606208, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_80ds", "tier": "Standard", "size": "NPMM_80ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5592064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "592"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_8ds": {"location": "westus2", "vm_size": "Internal_NPMM_8ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_8ds", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 60620, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_8ds", "tier": "Standard", "size": "NPMM_8ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "559104"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "59.2"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191250"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_SQLG6Test": {"location": "westus2", "vm_size": "Internal_SQLG6Test", "capability": {"type": "requirement", "name": "westus2_Internal_SQLG6Test", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_SQLG6Test", "tier": "Standard", "size": "SQLG6Test", "family": "standardSQLG6TestDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493162"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_SQLG6Test_Colocation": {"location": "westus2", "vm_size": "Internal_SQLG6Test_Colocation", "capability": {"type": "requirement", "name": "westus2_Internal_SQLG6Test_Colocation", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 86016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_SQLG6Test_Colocation", "tier": "Standard", "size": "SQLG6Test_Colocation", "family": "standardSQLG6TestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "84"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T0s": {"location": "westus2", "vm_size": "Internal_T0s", "capability": {"type": "requirement", "name": "westus2_Internal_T0s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T0s", "tier": "Standard", "size": "T0s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663306"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T1s": {"location": "westus2", "vm_size": "Internal_T1s", "capability": {"type": "requirement", "name": "westus2_Internal_T1s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T1s", "tier": "Standard", "size": "T1s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663307"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T2s": {"location": "westus2", "vm_size": "Internal_T2s", "capability": {"type": "requirement", "name": "westus2_Internal_T2s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T2s", "tier": "Standard", "size": "T2s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663308"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T3s": {"location": "westus2", "vm_size": "Internal_T3s", "capability": {"type": "requirement", "name": "westus2_Internal_T3s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T3s", "tier": "Standard", "size": "T3s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663309"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T4s": {"location": "westus2", "vm_size": "Internal_T4s", "capability": {"type": "requirement", "name": "westus2_Internal_T4s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T4s", "tier": "Standard", "size": "T4s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663310"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T5s": {"location": "westus2", "vm_size": "Internal_T5s", "capability": {"type": "requirement", "name": "westus2_Internal_T5s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T5s", "tier": "Standard", "size": "T5s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663311"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Large_Internal": {"location": "westus2", "vm_size": "Large_Internal", "capability": {"type": "requirement", "name": "westus2_Large_Internal", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Large_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "169984"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "MaxDisk_VM_2_64": {"location": "westus2", "vm_size": "MaxDisk_VM_2_64", "capability": {"type": "requirement", "name": "westus2_MaxDisk_VM_2_64", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "MaxDisk_VM_2_64", "tier": "Standard", "size": "VM_2_64", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "2000000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "MaxDisk_VM_4_64": {"location": "westus2", "vm_size": "MaxDisk_VM_4_64", "capability": {"type": "requirement", "name": "westus2_MaxDisk_VM_4_64", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "MaxDisk_VM_4_64", "tier": "Standard", "size": "VM_4_64", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "2000000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Medium_Internal": {"location": "westus2", "vm_size": "Medium_Internal", "capability": {"type": "requirement", "name": "westus2_Medium_Internal", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Medium_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "501760"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Small_Internal": {"location": "westus2", "vm_size": "Small_Internal", "capability": {"type": "requirement", "name": "westus2_Small_Internal", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1792, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Small_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "22528"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "1.75"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Special_D4_v2": {"location": "westus2", "vm_size": "Special_D4_v2", "capability": {"type": "requirement", "name": "westus2_Special_D4_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Special_D4_v2", "tier": "Standard", "size": "D4_v2", "family": "SpecialDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLDCGen6_2": {"location": "westus2", "vm_size": "SQLDCGen6_2", "capability": {"type": "requirement", "name": "westus2_SQLDCGen6_2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 49152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLDCGen6_2", "tier": "Standard", "size": "2", "family": "standardSQLDCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1716613"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "48"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "1"}], "restrictions": []}}, "SQLG4VM": {"location": "westus2", "vm_size": "SQLG4VM", "capability": {"type": "requirement", "name": "westus2_SQLG4VM", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 172032, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 5, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 5, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG4VM", "tier": "Standard", "size": "SQLG4VM", "family": "standardSQLG4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "168"}, {"name": "MaxDataDiskCount", "value": "5"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5": {"location": "westus2", "vm_size": "SQLG5", "capability": {"type": "requirement", "name": "westus2_SQLG5", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5", "tier": "Standard", "size": "SQLG5", "family": "standardSQLG5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5Core": {"location": "westus2", "vm_size": "SQLG5Core", "capability": {"type": "requirement", "name": "westus2_SQLG5Core", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 6, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 6, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5Core", "tier": "Standard", "size": "SQLG5Core", "family": "standardSQLG5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "6"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "SQLG5v2": {"location": "westus2", "vm_size": "SQLG5v2", "capability": {"type": "requirement", "name": "westus2_SQLG5v2", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5v2", "tier": "Standard", "size": "SQLG5v2", "family": "standardSQLG5V2SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_IaaS": {"location": "westus2", "vm_size": "SQLG5_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG5_IaaS", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_IaaS", "tier": "Standard", "size": "IaaS", "family": "standardSQLG5SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5_NP16": {"location": "westus2", "vm_size": "SQLG5_NP16", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 90112, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP16", "tier": "Standard", "size": "NP16", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "88"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP2": {"location": "westus2", "vm_size": "SQLG5_NP2", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP2", "tier": "Standard", "size": "NP2", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "74752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5_NP24": {"location": "westus2", "vm_size": "SQLG5_NP24", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 135168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP24", "tier": "Standard", "size": "NP24", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "132"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP32": {"location": "westus2", "vm_size": "SQLG5_NP32", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP32", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP32", "tier": "Standard", "size": "NP32", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP4": {"location": "westus2", "vm_size": "SQLG5_NP4", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP4", "tier": "Standard", "size": "NP4", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "184320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "4"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5_NP40": {"location": "westus2", "vm_size": "SQLG5_NP40", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP40", "tier": "Standard", "size": "NP40", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP64": {"location": "westus2", "vm_size": "SQLG5_NP64", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP64", "tier": "Standard", "size": "NP64", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3276800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP8": {"location": "westus2", "vm_size": "SQLG5_NP8", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 45056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP8", "tier": "Standard", "size": "NP8", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "404480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "44"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "SQLG5_NP80": {"location": "westus2", "vm_size": "SQLG5_NP80", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP80", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP80", "tier": "Standard", "size": "NP80", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP80s": {"location": "westus2", "vm_size": "SQLG5_NP80s", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP80s", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP80s", "tier": "Standard", "size": "NP80s", "family": "standardSQLG5NPSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6": {"location": "westus2", "vm_size": "SQLG6", "capability": {"type": "requirement", "name": "westus2_SQLG6", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 5040005, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6", "tier": "Standard", "size": "SQLG6", "family": "standardSQLG6Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5760000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4921.88"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6v2": {"location": "westus2", "vm_size": "SQLG6v2", "capability": {"type": "requirement", "name": "westus2_SQLG6v2", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6v2", "tier": "Standard", "size": "SQLG6v2", "family": "standardSQLG6V2SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_IaaS": {"location": "westus2", "vm_size": "SQLG6_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG6_IaaS", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_IaaS", "tier": "Standard", "size": "IaaS", "family": "standardSQLG6SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP16": {"location": "westus2", "vm_size": "SQLG6_NP16", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 89292, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP16", "tier": "Standard", "size": "NP16", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "686080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "87.2"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP2": {"location": "westus2", "vm_size": "SQLG6_NP2", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP2", "tier": "Standard", "size": "NP2", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG6_NP24": {"location": "westus2", "vm_size": "SQLG6_NP24", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 133939, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP24", "tier": "Standard", "size": "NP24", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "130.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP32": {"location": "westus2", "vm_size": "SQLG6_NP32", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP32", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 178585, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP32", "tier": "Standard", "size": "NP32", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1433600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "174.4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP4": {"location": "westus2", "vm_size": "SQLG6_NP4", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP4", "tier": "Standard", "size": "NP4", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG6_NP40": {"location": "westus2", "vm_size": "SQLG6_NP40", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 223232, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP40", "tier": "Standard", "size": "NP40", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1740800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP56": {"location": "westus2", "vm_size": "SQLG6_NP56", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP56", "is_default": false, "node_count": 1, "core_count": 56, "memory_mb": 312524, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP56", "tier": "Standard", "size": "NP56", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2560000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "56"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "305.2"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "56"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP64": {"location": "westus2", "vm_size": "SQLG6_NP64", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 357171, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP64", "tier": "Standard", "size": "NP64", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2969600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "348.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP8": {"location": "westus2", "vm_size": "SQLG6_NP8", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 44646, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP8", "tier": "Standard", "size": "NP8", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "43.6"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "SQLG6_NP80": {"location": "westus2", "vm_size": "SQLG6_NP80", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP80", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 446464, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP80", "tier": "Standard", "size": "NP80", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "436"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP96": {"location": "westus2", "vm_size": "SQLG6_NP96", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP96", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP96", "tier": "Standard", "size": "NP96", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP96s": {"location": "westus2", "vm_size": "SQLG6_NP96s", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP96s", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP96s", "tier": "Standard", "size": "NP96s", "family": "standardSQLG6NPSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7": {"location": "westus2", "vm_size": "SQLG7", "capability": {"type": "requirement", "name": "westus2_SQLG7", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7", "tier": "Standard", "size": "SQLG7", "family": "standardSQLG7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5853184"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7v2": {"location": "westus2", "vm_size": "SQLG7v2", "capability": {"type": "requirement", "name": "westus2_SQLG7v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7v2", "tier": "Standard", "size": "SQLG7v2", "family": "standardSQLG7V2SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7v2_AMD": {"location": "westus2", "vm_size": "SQLG7v2_AMD", "capability": {"type": "requirement", "name": "westus2_SQLG7v2_AMD", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7v2_AMD", "tier": "Standard", "size": "AMD", "family": "standardSQLG7V2AMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_AMD": {"location": "westus2", "vm_size": "SQLG7_AMD", "capability": {"type": "requirement", "name": "westus2_SQLG7_AMD", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_AMD", "tier": "Standard", "size": "AMD", "family": "StandardSQLGen7AMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4718592"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_AMD_IaaS": {"location": "westus2", "vm_size": "SQLG7_AMD_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG7_AMD_IaaS", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_AMD_IaaS", "tier": "Standard", "size": "AMD_IaaS", "family": "standardSQLG7AMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1070000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1070000000"}, {"name": "CachedDiskBytes", "value": "19200000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1260000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_DCLK": {"location": "westus2", "vm_size": "SQLG7_DCLK", "capability": {"type": "requirement", "name": "westus2_SQLG7_DCLK", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_DCLK", "tier": "Standard", "size": "DCLK", "family": "standardSQLG7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5853184"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "104"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_IaaS": {"location": "westus2", "vm_size": "SQLG7_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG7_IaaS", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_IaaS", "tier": "Standard", "size": "IaaS", "family": "standardSQLG7SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP104": {"location": "westus2", "vm_size": "SQLG7_NP104", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP104", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP104", "tier": "Standard", "size": "NP104", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP104s": {"location": "westus2", "vm_size": "SQLG7_NP104s", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP104s", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP104s", "tier": "Standard", "size": "NP104s", "family": "standardSQLG7NPSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP16": {"location": "westus2", "vm_size": "SQLG7_NP16", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 89292, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP16", "tier": "Standard", "size": "NP16", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "686080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "87.2"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP2": {"location": "westus2", "vm_size": "SQLG7_NP2", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP2", "tier": "Standard", "size": "NP2", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG7_NP24": {"location": "westus2", "vm_size": "SQLG7_NP24", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 133939, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP24", "tier": "Standard", "size": "NP24", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "130.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP32": {"location": "westus2", "vm_size": "SQLG7_NP32", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP32", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 178585, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP32", "tier": "Standard", "size": "NP32", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1433600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "174.4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP4": {"location": "westus2", "vm_size": "SQLG7_NP4", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP4", "tier": "Standard", "size": "NP4", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG7_NP40": {"location": "westus2", "vm_size": "SQLG7_NP40", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 223232, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP40", "tier": "Standard", "size": "NP40", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1740800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP64": {"location": "westus2", "vm_size": "SQLG7_NP64", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 357171, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP64", "tier": "Standard", "size": "NP64", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2969600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "348.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP8": {"location": "westus2", "vm_size": "SQLG7_NP8", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 44646, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP8", "tier": "Standard", "size": "NP8", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "43.6"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "SQLG7_NP80": {"location": "westus2", "vm_size": "SQLG7_NP80", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP80", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 446464, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP80", "tier": "Standard", "size": "NP80", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "436"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP96": {"location": "westus2", "vm_size": "SQLG7_NP96", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP96", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP96", "tier": "Standard", "size": "NP96", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLGM": {"location": "westus2", "vm_size": "SQLGM", "capability": {"type": "requirement", "name": "westus2_SQLGM", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 3840000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 6, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 6, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLGM", "tier": "Standard", "size": "SQLGM", "family": "standardSQLGMFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3750"}, {"name": "MaxDataDiskCount", "value": "6"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "SQLGZ": {"location": "westus2", "vm_size": "SQLGZ", "capability": {"type": "requirement", "name": "westus2_SQLGZ", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLGZ", "tier": "Standard", "size": "SQLGZ", "family": "standardSQLGZFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A0": {"location": "westus2", "vm_size": "Standard_A0", "capability": {"type": "requirement", "name": "westus2_Standard_A0", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A0", "tier": "Standard", "size": "A0", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.75"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "50"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A1": {"location": "westus2", "vm_size": "Standard_A1", "capability": {"type": "requirement", "name": "westus2_Standard_A1", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1792, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1", "tier": "Standard", "size": "A1", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "71680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "1.75"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A1Web35_v2": {"location": "westus2", "vm_size": "Standard_A1Web35_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A1Web35_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1Web35_v2", "tier": "Standard", "size": "A1Web35_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "35840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A1Web_v2": {"location": "westus2", "vm_size": "Standard_A1Web_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A1Web_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1Web_v2", "tier": "Standard", "size": "A1Web_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "71680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A1_v2": {"location": "westus2", "vm_size": "Standard_A1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1_v2", "tier": "Standard", "size": "A1_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "10240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "20971520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "10485760"}, {"name": "UncachedDiskIOPS", "value": "1600"}, {"name": "UncachedDiskBytesPerSecond", "value": "24000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_A2": {"location": "westus2", "vm_size": "Standard_A2", "capability": {"type": "requirement", "name": "westus2_Standard_A2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2", "tier": "Standard", "size": "A2", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "138240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A2m_v2": {"location": "westus2", "vm_size": "Standard_A2m_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2m_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2m_v2", "tier": "Standard", "size": "A2m_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_A2Web45_v2": {"location": "westus2", "vm_size": "Standard_A2Web45_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2Web45_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2Web45_v2", "tier": "Standard", "size": "A2Web45_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "46080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A2Web_v2": {"location": "westus2", "vm_size": "Standard_A2Web_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2Web_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2Web_v2", "tier": "Standard", "size": "A2Web_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A2_v2": {"location": "westus2", "vm_size": "Standard_A2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2_v2", "tier": "Standard", "size": "A2_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_A3": {"location": "westus2", "vm_size": "Standard_A3", "capability": {"type": "requirement", "name": "westus2_Standard_A3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A3", "tier": "Standard", "size": "A3", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "291840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A4": {"location": "westus2", "vm_size": "Standard_A4", "capability": {"type": "requirement", "name": "westus2_Standard_A4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4", "tier": "Standard", "size": "A4", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "619520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A4m_v2": {"location": "westus2", "vm_size": "Standard_A4m_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A4m_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4m_v2", "tier": "Standard", "size": "A4m_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "40960"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_A4Web_v2": {"location": "westus2", "vm_size": "Standard_A4Web_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A4Web_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4Web_v2", "tier": "Standard", "size": "A4Web_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A4_v2": {"location": "westus2", "vm_size": "Standard_A4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A4_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4_v2", "tier": "Standard", "size": "A4_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "40960"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_A5": {"location": "westus2", "vm_size": "Standard_A5", "capability": {"type": "requirement", "name": "westus2_Standard_A5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A5", "tier": "Standard", "size": "A5", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "138240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A6": {"location": "westus2", "vm_size": "Standard_A6", "capability": {"type": "requirement", "name": "westus2_Standard_A6", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A6", "tier": "Standard", "size": "A6", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "291840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A7": {"location": "westus2", "vm_size": "Standard_A7", "capability": {"type": "requirement", "name": "westus2_Standard_A7", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A7", "tier": "Standard", "size": "A7", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "619520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A8m_v2": {"location": "westus2", "vm_size": "Standard_A8m_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A8m_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A8m_v2", "tier": "Standard", "size": "A8m_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_A8_v2": {"location": "westus2", "vm_size": "Standard_A8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A8_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A8_v2", "tier": "Standard", "size": "A8_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_Akv112v1_G3": {"location": "westus2", "vm_size": "Standard_Akv112v1_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv112v1_G3", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 200704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv112v1_G3", "tier": "Standard", "size": "Akv112v1_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "196"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_Akv112v2_G3": {"location": "westus2", "vm_size": "Standard_Akv112v2_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv112v2_G3", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 200704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv112v2_G3", "tier": "Standard", "size": "Akv112v2_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "196"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_Akv16v1_G3": {"location": "westus2", "vm_size": "Standard_Akv16v1_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv16v1_G3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv16v1_G3", "tier": "Standard", "size": "Akv16v1_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_Akv64v1_G3": {"location": "westus2", "vm_size": "Standard_Akv64v1_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv64v1_G3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv64v1_G3", "tier": "Standard", "size": "Akv64v1_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_Akv64v2_G3": {"location": "westus2", "vm_size": "Standard_Akv64v2_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv64v2_G3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv64v2_G3", "tier": "Standard", "size": "Akv64v2_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_AKV8": {"location": "westus2", "vm_size": "Standard_AKV8", "capability": {"type": "requirement", "name": "westus2_Standard_AKV8", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_AKV8", "tier": "Standard", "size": "AKV8", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3051760"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_B12ms": {"location": "westus2", "vm_size": "Standard_B12ms", "capability": {"type": "requirement", "name": "westus2_Standard_B12ms", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 49152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 6, "max_inclusive": true}, "max_nic_count": 6}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B12ms", "tier": "Standard", "size": "B12ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "98304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "48"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6480"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "74956800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "74956800"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "50000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "6"}], "restrictions": []}}, "Standard_B16als_v2": {"location": "westus2", "vm_size": "Standard_B16als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16als_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16als_v2", "tier": "Standard", "size": "B16als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16as_v2": {"location": "westus2", "vm_size": "Standard_B16as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16as_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16as_v2", "tier": "Standard", "size": "B16as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16ls_v2": {"location": "westus2", "vm_size": "Standard_B16ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16ls_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16ls_v2", "tier": "Standard", "size": "B16ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16ms": {"location": "westus2", "vm_size": "Standard_B16ms", "capability": {"type": "requirement", "name": "westus2_Standard_B16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16ms", "tier": "Standard", "size": "B16ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8640"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "52428800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_B16pls_v2": {"location": "westus2", "vm_size": "Standard_B16pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16pls_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16pls_v2", "tier": "Standard", "size": "B16pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "25600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "629145600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "629145600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16ps_v2": {"location": "westus2", "vm_size": "Standard_B16ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16ps_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16ps_v2", "tier": "Standard", "size": "B16ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "25600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "629145600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "629145600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16s_v2": {"location": "westus2", "vm_size": "Standard_B16s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16s_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16s_v2", "tier": "Standard", "size": "B16s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B1ls": {"location": "westus2", "vm_size": "Standard_B1ls", "capability": {"type": "requirement", "name": "westus2_Standard_B1ls", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 512, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B1ls", "tier": "Standard", "size": "B1ls", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "0.5"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "320"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B1ms": {"location": "westus2", "vm_size": "Standard_B1ms", "capability": {"type": "requirement", "name": "westus2_Standard_B1ms", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B1ms", "tier": "Standard", "size": "B1ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "640"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B1s": {"location": "westus2", "vm_size": "Standard_B1s", "capability": {"type": "requirement", "name": "westus2_Standard_B1s", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B1s", "tier": "Standard", "size": "B1s", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "320"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B20ms": {"location": "westus2", "vm_size": "Standard_B20ms", "capability": {"type": "requirement", "name": "westus2_Standard_B20ms", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 81920, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B20ms", "tier": "Standard", "size": "B20ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "80"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "52428800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_B2als_v2": {"location": "westus2", "vm_size": "Standard_B2als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2als_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2als_v2", "tier": "Standard", "size": "B2als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2as_v2": {"location": "westus2", "vm_size": "Standard_B2as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2as_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2as_v2", "tier": "Standard", "size": "B2as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ats_v2": {"location": "westus2", "vm_size": "Standard_B2ats_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ats_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ats_v2", "tier": "Standard", "size": "B2ats_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2hms": {"location": "westus2", "vm_size": "Standard_B2hms", "capability": {"type": "requirement", "name": "westus2_Standard_B2hms", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2hms", "tier": "Standard", "size": "B2hms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "23592960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "23592960"}, {"name": "UncachedDiskIOPS", "value": "1920"}, {"name": "UncachedDiskBytesPerSecond", "value": "23592960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_B2ls_v2": {"location": "westus2", "vm_size": "Standard_B2ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ls_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ls_v2", "tier": "Standard", "size": "B2ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ms": {"location": "westus2", "vm_size": "Standard_B2ms", "capability": {"type": "requirement", "name": "westus2_Standard_B2ms", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ms", "tier": "Standard", "size": "B2ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "23592960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "23592960"}, {"name": "UncachedDiskIOPS", "value": "1920"}, {"name": "UncachedDiskBytesPerSecond", "value": "23592960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B2pls_v2": {"location": "westus2", "vm_size": "Standard_B2pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2pls_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2pls_v2", "tier": "Standard", "size": "B2pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "89128960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "89128960"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ps_v2": {"location": "westus2", "vm_size": "Standard_B2ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ps_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ps_v2", "tier": "Standard", "size": "B2ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "89128960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "89128960"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2pts_v2": {"location": "westus2", "vm_size": "Standard_B2pts_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2pts_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2pts_v2", "tier": "Standard", "size": "B2pts_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "89128960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "89128960"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2s": {"location": "westus2", "vm_size": "Standard_B2s", "capability": {"type": "requirement", "name": "westus2_Standard_B2s", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2s", "tier": "Standard", "size": "B2s", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "1280"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B2s_v2": {"location": "westus2", "vm_size": "Standard_B2s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2s_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2s_v2", "tier": "Standard", "size": "B2s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ts_v2": {"location": "westus2", "vm_size": "Standard_B2ts_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ts_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ts_v2", "tier": "Standard", "size": "B2ts_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B32als_v2": {"location": "westus2", "vm_size": "Standard_B32als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32als_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32als_v2", "tier": "Standard", "size": "B32als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B32as_v2": {"location": "westus2", "vm_size": "Standard_B32as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32as_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32as_v2", "tier": "Standard", "size": "B32as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B32ls_v2": {"location": "westus2", "vm_size": "Standard_B32ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32ls_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32ls_v2", "tier": "Standard", "size": "B32ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B32s_v2": {"location": "westus2", "vm_size": "Standard_B32s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32s_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32s_v2", "tier": "Standard", "size": "B32s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B4als_v2": {"location": "westus2", "vm_size": "Standard_B4als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4als_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4als_v2", "tier": "Standard", "size": "B4als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B4as_v2": {"location": "westus2", "vm_size": "Standard_B4as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4as_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4as_v2", "tier": "Standard", "size": "B4as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B4hms": {"location": "westus2", "vm_size": "Standard_B4hms", "capability": {"type": "requirement", "name": "westus2_Standard_B4hms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4hms", "tier": "Standard", "size": "B4hms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "36700160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "36700160"}, {"name": "UncachedDiskIOPS", "value": "2880"}, {"name": "UncachedDiskBytesPerSecond", "value": "36700160"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_B4ls_v2": {"location": "westus2", "vm_size": "Standard_B4ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4ls_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4ls_v2", "tier": "Standard", "size": "B4ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B4ms": {"location": "westus2", "vm_size": "Standard_B4ms", "capability": {"type": "requirement", "name": "westus2_Standard_B4ms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4ms", "tier": "Standard", "size": "B4ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "36700160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "36700160"}, {"name": "UncachedDiskIOPS", "value": "2880"}, {"name": "UncachedDiskBytesPerSecond", "value": "36700160"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B4pls_v2": {"location": "westus2", "vm_size": "Standard_B4pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4pls_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4pls_v2", "tier": "Standard", "size": "B4pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "152043520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "152043520"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B4ps_v2": {"location": "westus2", "vm_size": "Standard_B4ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4ps_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4ps_v2", "tier": "Standard", "size": "B4ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "152043520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "152043520"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B4s_v2": {"location": "westus2", "vm_size": "Standard_B4s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4s_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4s_v2", "tier": "Standard", "size": "B4s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B8als_v2": {"location": "westus2", "vm_size": "Standard_B8als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8als_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8als_v2", "tier": "Standard", "size": "B8als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8as_v2": {"location": "westus2", "vm_size": "Standard_B8as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8as_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8as_v2", "tier": "Standard", "size": "B8as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8ls_v2": {"location": "westus2", "vm_size": "Standard_B8ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8ls_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8ls_v2", "tier": "Standard", "size": "B8ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8ms": {"location": "westus2", "vm_size": "Standard_B8ms", "capability": {"type": "requirement", "name": "westus2_Standard_B8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8ms", "tier": "Standard", "size": "B8ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "52428800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "52428800"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "52428800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8pls_v2": {"location": "westus2", "vm_size": "Standard_B8pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8pls_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8pls_v2", "tier": "Standard", "size": "B8pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "304087040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "304087040"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B8ps_v2": {"location": "westus2", "vm_size": "Standard_B8ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8ps_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8ps_v2", "tier": "Standard", "size": "B8ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "304087040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "304087040"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B8s_v2": {"location": "westus2", "vm_size": "Standard_B8s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8s_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8s_v2", "tier": "Standard", "size": "B8s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D11_v2": {"location": "westus2", "vm_size": "Standard_D11_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D11_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D11_v2", "tier": "Standard", "size": "D11_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D11_v2_Internal": {"location": "westus2", "vm_size": "Standard_D11_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D11_v2_Internal", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D11_v2_Internal", "tier": "Standard", "size": "D11_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D11_v2_Promo": {"location": "westus2", "vm_size": "Standard_D11_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D11_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D11_v2_Promo", "tier": "Standard", "size": "D11_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D12_v2": {"location": "westus2", "vm_size": "Standard_D12_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D12_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D12_v2", "tier": "Standard", "size": "D12_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D12_v2_Internal": {"location": "westus2", "vm_size": "Standard_D12_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D12_v2_Internal", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D12_v2_Internal", "tier": "Standard", "size": "D12_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D12_v2_Promo": {"location": "westus2", "vm_size": "Standard_D12_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D12_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D12_v2_Promo", "tier": "Standard", "size": "D12_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D13_v2": {"location": "westus2", "vm_size": "Standard_D13_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D13_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D13_v2", "tier": "Standard", "size": "D13_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D13_v2_Internal": {"location": "westus2", "vm_size": "Standard_D13_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D13_v2_Internal", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D13_v2_Internal", "tier": "Standard", "size": "D13_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D13_v2_Promo": {"location": "westus2", "vm_size": "Standard_D13_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D13_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D13_v2_Promo", "tier": "Standard", "size": "D13_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D14_v2": {"location": "westus2", "vm_size": "Standard_D14_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D14_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D14_v2", "tier": "Standard", "size": "D14_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D14_v2_Internal": {"location": "westus2", "vm_size": "Standard_D14_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D14_v2_Internal", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D14_v2_Internal", "tier": "Standard", "size": "D14_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D14_v2_Promo": {"location": "westus2", "vm_size": "Standard_D14_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D14_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D14_v2_Promo", "tier": "Standard", "size": "D14_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D15i_v2": {"location": "westus2", "vm_size": "Standard_D15i_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D15i_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D15i_v2", "tier": "Standard", "size": "D15i_v2", "family": "standardDIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "60000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "982515712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "490733568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D15_v2": {"location": "westus2", "vm_size": "Standard_D15_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D15_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D15_v2", "tier": "Standard", "size": "D15_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "60000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "982515712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "490733568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ads_v5": {"location": "westus2", "vm_size": "Standard_D16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ads_v5", "tier": "Standard", "size": "D16ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16alds_v5": {"location": "westus2", "vm_size": "Standard_D16alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16alds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16alds_v5", "tier": "Standard", "size": "D16alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "274878000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16als_v5": {"location": "westus2", "vm_size": "Standard_D16als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16als_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16als_v5", "tier": "Standard", "size": "D16als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16as_v4": {"location": "westus2", "vm_size": "Standard_D16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16as_v4", "tier": "Standard", "size": "D16as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16as_v5": {"location": "westus2", "vm_size": "Standard_D16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16as_v5", "tier": "Standard", "size": "D16as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D16as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D16as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16as_v5_Promo", "tier": "Standard", "size": "D16as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16a_v4": {"location": "westus2", "vm_size": "Standard_D16a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16a_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16a_v4", "tier": "Standard", "size": "D16a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16darm_V3": {"location": "westus2", "vm_size": "Standard_D16darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D16darm_V3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16darm_V3", "tier": "Standard", "size": "D16darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "CachedDiskBytes", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ds_v4": {"location": "westus2", "vm_size": "Standard_D16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ds_v4", "tier": "Standard", "size": "D16ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ds_v5": {"location": "westus2", "vm_size": "Standard_D16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ds_v5", "tier": "Standard", "size": "D16ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16d_v4": {"location": "westus2", "vm_size": "Standard_D16d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16d_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16d_v4", "tier": "Standard", "size": "D16d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "483393536"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16d_v5": {"location": "westus2", "vm_size": "Standard_D16d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16d_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16d_v5", "tier": "Standard", "size": "D16d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16lds_v5": {"location": "westus2", "vm_size": "Standard_D16lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16lds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16lds_v5", "tier": "Standard", "size": "D16lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ls_v5": {"location": "westus2", "vm_size": "Standard_D16ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ls_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ls_v5", "tier": "Standard", "size": "D16ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16pds_v5": {"location": "westus2", "vm_size": "Standard_D16pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16pds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16pds_v5", "tier": "Standard", "size": "D16pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16plds_v5": {"location": "westus2", "vm_size": "Standard_D16plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16plds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16plds_v5", "tier": "Standard", "size": "D16plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16pls_v5": {"location": "westus2", "vm_size": "Standard_D16pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16pls_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16pls_v5", "tier": "Standard", "size": "D16pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16ps_v5": {"location": "westus2", "vm_size": "Standard_D16ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ps_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ps_v5", "tier": "Standard", "size": "D16ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16s_v3": {"location": "westus2", "vm_size": "Standard_D16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16s_v3", "tier": "Standard", "size": "D16s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16s_v4": {"location": "westus2", "vm_size": "Standard_D16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16s_v4", "tier": "Standard", "size": "D16s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16s_v5": {"location": "westus2", "vm_size": "Standard_D16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16s_v5", "tier": "Standard", "size": "D16s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16_v3": {"location": "westus2", "vm_size": "Standard_D16_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D16_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16_v3", "tier": "Standard", "size": "D16_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16_v4": {"location": "westus2", "vm_size": "Standard_D16_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16_v4", "tier": "Standard", "size": "D16_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16_v5": {"location": "westus2", "vm_size": "Standard_D16_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16_v5", "tier": "Standard", "size": "D16_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D1_v2": {"location": "westus2", "vm_size": "Standard_D1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D1_v2", "tier": "Standard", "size": "D1_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "48234496"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24117248"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D1_v2_Internal": {"location": "westus2", "vm_size": "Standard_D1_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D1_v2_Internal", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D1_v2_Internal", "tier": "Standard", "size": "D1_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D2ads_v5": {"location": "westus2", "vm_size": "Standard_D2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ads_v5", "tier": "Standard", "size": "D2ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "82000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ahs_v4": {"location": "westus2", "vm_size": "Standard_D2ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2ahs_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ahs_v4", "tier": "Standard", "size": "D2ahs_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2alds_v5": {"location": "westus2", "vm_size": "Standard_D2alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2alds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2alds_v5", "tier": "Standard", "size": "D2alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "82000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2als_v5": {"location": "westus2", "vm_size": "Standard_D2als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2als_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2als_v5", "tier": "Standard", "size": "D2als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "82000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2as_v4": {"location": "westus2", "vm_size": "Standard_D2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2as_v4", "tier": "Standard", "size": "D2as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2as_v5": {"location": "westus2", "vm_size": "Standard_D2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2as_v5", "tier": "Standard", "size": "D2as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85983232"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D2as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D2as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2as_v5_Promo", "tier": "Standard", "size": "D2as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2a_v4": {"location": "westus2", "vm_size": "Standard_D2a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2a_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2a_v4", "tier": "Standard", "size": "D2a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "50331648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "25165824"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2darm_V3": {"location": "westus2", "vm_size": "Standard_D2darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D2darm_V3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2darm_V3", "tier": "Standard", "size": "D2darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120000000"}, {"name": "CachedDiskBytes", "value": "100000000"}, {"name": "UncachedDiskIOPS", "value": "3000"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ds_v4": {"location": "westus2", "vm_size": "Standard_D2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ds_v4", "tier": "Standard", "size": "D2ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_D2ds_v5": {"location": "westus2", "vm_size": "Standard_D2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ds_v5", "tier": "Standard", "size": "D2ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2d_v4": {"location": "westus2", "vm_size": "Standard_D2d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2d_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2d_v4", "tier": "Standard", "size": "D2d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2d_v5": {"location": "westus2", "vm_size": "Standard_D2d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2d_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2d_v5", "tier": "Standard", "size": "D2d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2hs_v3": {"location": "westus2", "vm_size": "Standard_D2hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D2hs_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2hs_v3", "tier": "Standard", "size": "D2hs_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2lds_v5": {"location": "westus2", "vm_size": "Standard_D2lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2lds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2lds_v5", "tier": "Standard", "size": "D2lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ls_v5": {"location": "westus2", "vm_size": "Standard_D2ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ls_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ls_v5", "tier": "Standard", "size": "D2ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2pds_v5": {"location": "westus2", "vm_size": "Standard_D2pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2pds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2pds_v5", "tier": "Standard", "size": "D2pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2plds_v5": {"location": "westus2", "vm_size": "Standard_D2plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2plds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2plds_v5", "tier": "Standard", "size": "D2plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2pls_v5": {"location": "westus2", "vm_size": "Standard_D2pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2pls_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2pls_v5", "tier": "Standard", "size": "D2pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ps_v5": {"location": "westus2", "vm_size": "Standard_D2ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ps_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ps_v5", "tier": "Standard", "size": "D2ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2s_v3": {"location": "westus2", "vm_size": "Standard_D2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2s_v3", "tier": "Standard", "size": "D2s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2s_v4": {"location": "westus2", "vm_size": "Standard_D2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2s_v4", "tier": "Standard", "size": "D2s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_D2s_v5": {"location": "westus2", "vm_size": "Standard_D2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2s_v5", "tier": "Standard", "size": "D2s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2_v2": {"location": "westus2", "vm_size": "Standard_D2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v2", "tier": "Standard", "size": "D2_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2_v2_Internal": {"location": "westus2", "vm_size": "Standard_D2_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v2_Internal", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v2_Internal", "tier": "Standard", "size": "D2_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D2_v2_Promo": {"location": "westus2", "vm_size": "Standard_D2_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v2_Promo", "tier": "Standard", "size": "D2_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D2_v3": {"location": "westus2", "vm_size": "Standard_D2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v3", "tier": "Standard", "size": "D2_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "48234496"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24117248"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2_v4": {"location": "westus2", "vm_size": "Standard_D2_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v4", "tier": "Standard", "size": "D2_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_D2_v5": {"location": "westus2", "vm_size": "Standard_D2_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v5", "tier": "Standard", "size": "D2_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D32-16s_v3": {"location": "westus2", "vm_size": "Standard_D32-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32-16s_v3", "tier": "Standard", "size": "D32-16s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32-8s_v3": {"location": "westus2", "vm_size": "Standard_D32-8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32-8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32-8s_v3", "tier": "Standard", "size": "D32-8s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ads_v5": {"location": "westus2", "vm_size": "Standard_D32ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ads_v5", "tier": "Standard", "size": "D32ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32alds_v5": {"location": "westus2", "vm_size": "Standard_D32alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32alds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32alds_v5", "tier": "Standard", "size": "D32alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "549756000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32als_v5": {"location": "westus2", "vm_size": "Standard_D32als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32als_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32als_v5", "tier": "Standard", "size": "D32als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32as_v4": {"location": "westus2", "vm_size": "Standard_D32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32as_v4", "tier": "Standard", "size": "D32as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32as_v5": {"location": "westus2", "vm_size": "Standard_D32as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32as_v5", "tier": "Standard", "size": "D32as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D32as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D32as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32as_v5_Promo", "tier": "Standard", "size": "D32as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32a_v4": {"location": "westus2", "vm_size": "Standard_D32a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32a_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32a_v4", "tier": "Standard", "size": "D32a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32darm_V3": {"location": "westus2", "vm_size": "Standard_D32darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D32darm_V3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32darm_V3", "tier": "Standard", "size": "D32darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3080000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "CachedDiskBytes", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ds_v4": {"location": "westus2", "vm_size": "Standard_D32ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32ds_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ds_v4", "tier": "Standard", "size": "D32ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ds_v5": {"location": "westus2", "vm_size": "Standard_D32ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ds_v5", "tier": "Standard", "size": "D32ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32d_v4": {"location": "westus2", "vm_size": "Standard_D32d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32d_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32d_v4", "tier": "Standard", "size": "D32d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32d_v5": {"location": "westus2", "vm_size": "Standard_D32d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32d_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32d_v5", "tier": "Standard", "size": "D32d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32lds_v5": {"location": "westus2", "vm_size": "Standard_D32lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32lds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32lds_v5", "tier": "Standard", "size": "D32lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ls_v5": {"location": "westus2", "vm_size": "Standard_D32ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ls_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ls_v5", "tier": "Standard", "size": "D32ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32pds_v5": {"location": "westus2", "vm_size": "Standard_D32pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32pds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32pds_v5", "tier": "Standard", "size": "D32pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32plds_v5": {"location": "westus2", "vm_size": "Standard_D32plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32plds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32plds_v5", "tier": "Standard", "size": "D32plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32pls_v5": {"location": "westus2", "vm_size": "Standard_D32pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32pls_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32pls_v5", "tier": "Standard", "size": "D32pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ps_v5": {"location": "westus2", "vm_size": "Standard_D32ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ps_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ps_v5", "tier": "Standard", "size": "D32ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32s_v3": {"location": "westus2", "vm_size": "Standard_D32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32s_v3", "tier": "Standard", "size": "D32s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32s_v4": {"location": "westus2", "vm_size": "Standard_D32s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32s_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32s_v4", "tier": "Standard", "size": "D32s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32s_v5": {"location": "westus2", "vm_size": "Standard_D32s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32s_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32s_v5", "tier": "Standard", "size": "D32s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32_v3": {"location": "westus2", "vm_size": "Standard_D32_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32_v3", "tier": "Standard", "size": "D32_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32_v4": {"location": "westus2", "vm_size": "Standard_D32_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32_v4", "tier": "Standard", "size": "D32_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32_v5": {"location": "westus2", "vm_size": "Standard_D32_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32_v5", "tier": "Standard", "size": "D32_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D3_v2": {"location": "westus2", "vm_size": "Standard_D3_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D3_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D3_v2", "tier": "Standard", "size": "D3_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D3_v2_Internal": {"location": "westus2", "vm_size": "Standard_D3_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D3_v2_Internal", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D3_v2_Internal", "tier": "Standard", "size": "D3_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D3_v2_Promo": {"location": "westus2", "vm_size": "Standard_D3_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D3_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D3_v2_Promo", "tier": "Standard", "size": "D3_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D48ads_v5": {"location": "westus2", "vm_size": "Standard_D48ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ads_v5", "tier": "Standard", "size": "D48ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48alds_v5": {"location": "westus2", "vm_size": "Standard_D48alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48alds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48alds_v5", "tier": "Standard", "size": "D48alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "824634000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48als_v5": {"location": "westus2", "vm_size": "Standard_D48als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48als_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48als_v5", "tier": "Standard", "size": "D48als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48as_v4": {"location": "westus2", "vm_size": "Standard_D48as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48as_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48as_v4", "tier": "Standard", "size": "D48as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48as_v5": {"location": "westus2", "vm_size": "Standard_D48as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48as_v5", "tier": "Standard", "size": "D48as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D48as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D48as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48as_v5_Promo", "tier": "Standard", "size": "D48as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48a_v4": {"location": "westus2", "vm_size": "Standard_D48a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48a_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48a_v4", "tier": "Standard", "size": "D48a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48darm_V3": {"location": "westus2", "vm_size": "Standard_D48darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D48darm_V3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48darm_V3", "tier": "Standard", "size": "D48darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1200000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ds_v4": {"location": "westus2", "vm_size": "Standard_D48ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48ds_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ds_v4", "tier": "Standard", "size": "D48ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ds_v5": {"location": "westus2", "vm_size": "Standard_D48ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ds_v5", "tier": "Standard", "size": "D48ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48d_v4": {"location": "westus2", "vm_size": "Standard_D48d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48d_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48d_v4", "tier": "Standard", "size": "D48d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48d_v5": {"location": "westus2", "vm_size": "Standard_D48d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48d_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48d_v5", "tier": "Standard", "size": "D48d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48lds_v5": {"location": "westus2", "vm_size": "Standard_D48lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48lds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48lds_v5", "tier": "Standard", "size": "D48lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ls_v5": {"location": "westus2", "vm_size": "Standard_D48ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ls_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ls_v5", "tier": "Standard", "size": "D48ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48pds_v5": {"location": "westus2", "vm_size": "Standard_D48pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48pds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48pds_v5", "tier": "Standard", "size": "D48pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48plds_v5": {"location": "westus2", "vm_size": "Standard_D48plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48plds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48plds_v5", "tier": "Standard", "size": "D48plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48pls_v5": {"location": "westus2", "vm_size": "Standard_D48pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48pls_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48pls_v5", "tier": "Standard", "size": "D48pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ps_v5": {"location": "westus2", "vm_size": "Standard_D48ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ps_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ps_v5", "tier": "Standard", "size": "D48ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48s_v3": {"location": "westus2", "vm_size": "Standard_D48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48s_v3", "tier": "Standard", "size": "D48s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48s_v4": {"location": "westus2", "vm_size": "Standard_D48s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48s_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48s_v4", "tier": "Standard", "size": "D48s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48s_v5": {"location": "westus2", "vm_size": "Standard_D48s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48s_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48s_v5", "tier": "Standard", "size": "D48s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48_v3": {"location": "westus2", "vm_size": "Standard_D48_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D48_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48_v3", "tier": "Standard", "size": "D48_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48_v4": {"location": "westus2", "vm_size": "Standard_D48_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48_v4", "tier": "Standard", "size": "D48_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48_v5": {"location": "westus2", "vm_size": "Standard_D48_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48_v5", "tier": "Standard", "size": "D48_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D4ads_v5": {"location": "westus2", "vm_size": "Standard_D4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ads_v5", "tier": "Standard", "size": "D4ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "144000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ahs_v4": {"location": "westus2", "vm_size": "Standard_D4ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4ahs_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ahs_v4", "tier": "Standard", "size": "D4ahs_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4alds_v5": {"location": "westus2", "vm_size": "Standard_D4alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4alds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4alds_v5", "tier": "Standard", "size": "D4alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "144000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4als_v5": {"location": "westus2", "vm_size": "Standard_D4als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4als_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4als_v5", "tier": "Standard", "size": "D4als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "144000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4as_v4": {"location": "westus2", "vm_size": "Standard_D4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4as_v4", "tier": "Standard", "size": "D4as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4as_v5": {"location": "westus2", "vm_size": "Standard_D4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4as_v5", "tier": "Standard", "size": "D4as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D4as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D4as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4as_v5_Promo", "tier": "Standard", "size": "D4as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4a_v4": {"location": "westus2", "vm_size": "Standard_D4a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4a_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4a_v4", "tier": "Standard", "size": "D4a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4darm_V3": {"location": "westus2", "vm_size": "Standard_D4darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D4darm_V3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4darm_V3", "tier": "Standard", "size": "D4darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "CachedDiskBytes", "value": "200000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ds_v4": {"location": "westus2", "vm_size": "Standard_D4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ds_v4", "tier": "Standard", "size": "D4ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ds_v5": {"location": "westus2", "vm_size": "Standard_D4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ds_v5", "tier": "Standard", "size": "D4ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4d_v4": {"location": "westus2", "vm_size": "Standard_D4d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4d_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4d_v4", "tier": "Standard", "size": "D4d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4d_v5": {"location": "westus2", "vm_size": "Standard_D4d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4d_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4d_v5", "tier": "Standard", "size": "D4d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4hs_v3": {"location": "westus2", "vm_size": "Standard_D4hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D4hs_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4hs_v3", "tier": "Standard", "size": "D4hs_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4lds_v5": {"location": "westus2", "vm_size": "Standard_D4lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4lds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4lds_v5", "tier": "Standard", "size": "D4lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ls_v5": {"location": "westus2", "vm_size": "Standard_D4ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ls_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ls_v5", "tier": "Standard", "size": "D4ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4pds_v5": {"location": "westus2", "vm_size": "Standard_D4pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4pds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4pds_v5", "tier": "Standard", "size": "D4pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4plds_v5": {"location": "westus2", "vm_size": "Standard_D4plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4plds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4plds_v5", "tier": "Standard", "size": "D4plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4pls_v5": {"location": "westus2", "vm_size": "Standard_D4pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4pls_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4pls_v5", "tier": "Standard", "size": "D4pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ps_v5": {"location": "westus2", "vm_size": "Standard_D4ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ps_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ps_v5", "tier": "Standard", "size": "D4ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4s_v3": {"location": "westus2", "vm_size": "Standard_D4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4s_v3", "tier": "Standard", "size": "D4s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4s_v4": {"location": "westus2", "vm_size": "Standard_D4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4s_v4", "tier": "Standard", "size": "D4s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4s_v5": {"location": "westus2", "vm_size": "Standard_D4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4s_v5", "tier": "Standard", "size": "D4s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4_v2": {"location": "westus2", "vm_size": "Standard_D4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v2", "tier": "Standard", "size": "D4_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D4_v2_Internal": {"location": "westus2", "vm_size": "Standard_D4_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v2_Internal", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v2_Internal", "tier": "Standard", "size": "D4_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D4_v2_Promo": {"location": "westus2", "vm_size": "Standard_D4_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v2_Promo", "tier": "Standard", "size": "D4_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D4_v3": {"location": "westus2", "vm_size": "Standard_D4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v3", "tier": "Standard", "size": "D4_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4_v4": {"location": "westus2", "vm_size": "Standard_D4_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v4", "tier": "Standard", "size": "D4_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4_v5": {"location": "westus2", "vm_size": "Standard_D4_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v5", "tier": "Standard", "size": "D4_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D5_v2": {"location": "westus2", "vm_size": "Standard_D5_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D5_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D5_v2", "tier": "Standard", "size": "D5_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D5_v2_Internal": {"location": "westus2", "vm_size": "Standard_D5_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D5_v2_Internal", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D5_v2_Internal", "tier": "Standard", "size": "D5_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D5_v2_Promo": {"location": "westus2", "vm_size": "Standard_D5_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D5_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D5_v2_Promo", "tier": "Standard", "size": "D5_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D64-16s_v3": {"location": "westus2", "vm_size": "Standard_D64-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64-16s_v3", "tier": "Standard", "size": "D64-16s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64-32s_v3": {"location": "westus2", "vm_size": "Standard_D64-32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64-32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64-32s_v3", "tier": "Standard", "size": "D64-32s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ads_v5": {"location": "westus2", "vm_size": "Standard_D64ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ads_v5", "tier": "Standard", "size": "D64ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64alds_v5": {"location": "westus2", "vm_size": "Standard_D64alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64alds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64alds_v5", "tier": "Standard", "size": "D64alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64als_v5": {"location": "westus2", "vm_size": "Standard_D64als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64als_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64als_v5", "tier": "Standard", "size": "D64als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64as_v4": {"location": "westus2", "vm_size": "Standard_D64as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64as_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64as_v4", "tier": "Standard", "size": "D64as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64as_v5": {"location": "westus2", "vm_size": "Standard_D64as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64as_v5", "tier": "Standard", "size": "D64as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D64as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D64as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64as_v5_Promo", "tier": "Standard", "size": "D64as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64a_v4": {"location": "westus2", "vm_size": "Standard_D64a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64a_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64a_v4", "tier": "Standard", "size": "D64a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ds_v4": {"location": "westus2", "vm_size": "Standard_D64ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64ds_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ds_v4", "tier": "Standard", "size": "D64ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ds_v5": {"location": "westus2", "vm_size": "Standard_D64ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ds_v5", "tier": "Standard", "size": "D64ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64d_v4": {"location": "westus2", "vm_size": "Standard_D64d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64d_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64d_v4", "tier": "Standard", "size": "D64d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64d_v5": {"location": "westus2", "vm_size": "Standard_D64d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64d_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64d_v5", "tier": "Standard", "size": "D64d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64lds_v5": {"location": "westus2", "vm_size": "Standard_D64lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64lds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64lds_v5", "tier": "Standard", "size": "D64lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ls_v5": {"location": "westus2", "vm_size": "Standard_D64ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ls_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ls_v5", "tier": "Standard", "size": "D64ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64pds_v5": {"location": "westus2", "vm_size": "Standard_D64pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64pds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64pds_v5", "tier": "Standard", "size": "D64pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64plds_v5": {"location": "westus2", "vm_size": "Standard_D64plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64plds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64plds_v5", "tier": "Standard", "size": "D64plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64pls_v5": {"location": "westus2", "vm_size": "Standard_D64pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64pls_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64pls_v5", "tier": "Standard", "size": "D64pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ps_v5": {"location": "westus2", "vm_size": "Standard_D64ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ps_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ps_v5", "tier": "Standard", "size": "D64ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64s_v3": {"location": "westus2", "vm_size": "Standard_D64s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64s_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64s_v3", "tier": "Standard", "size": "D64s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64s_v4": {"location": "westus2", "vm_size": "Standard_D64s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64s_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64s_v4", "tier": "Standard", "size": "D64s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64s_v5": {"location": "westus2", "vm_size": "Standard_D64s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64s_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64s_v5", "tier": "Standard", "size": "D64s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64_v3": {"location": "westus2", "vm_size": "Standard_D64_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64_v3", "tier": "Standard", "size": "D64_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64_v4": {"location": "westus2", "vm_size": "Standard_D64_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64_v4", "tier": "Standard", "size": "D64_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64_v5": {"location": "westus2", "vm_size": "Standard_D64_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64_v5", "tier": "Standard", "size": "D64_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D8ads_v5": {"location": "westus2", "vm_size": "Standard_D8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ads_v5", "tier": "Standard", "size": "D8ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ahs_v4": {"location": "westus2", "vm_size": "Standard_D8ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8ahs_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ahs_v4", "tier": "Standard", "size": "D8ahs_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8alds_v5": {"location": "westus2", "vm_size": "Standard_D8alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8alds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8alds_v5", "tier": "Standard", "size": "D8alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "137439000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8als_v5": {"location": "westus2", "vm_size": "Standard_D8als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8als_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8als_v5", "tier": "Standard", "size": "D8als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8as_v4": {"location": "westus2", "vm_size": "Standard_D8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8as_v4", "tier": "Standard", "size": "D8as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8as_v5": {"location": "westus2", "vm_size": "Standard_D8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8as_v5", "tier": "Standard", "size": "D8as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D8as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D8as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8as_v5_Promo", "tier": "Standard", "size": "D8as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8a_v4": {"location": "westus2", "vm_size": "Standard_D8a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8a_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8a_v4", "tier": "Standard", "size": "D8a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8darm_V3": {"location": "westus2", "vm_size": "Standard_D8darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D8darm_V3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8darm_V3", "tier": "Standard", "size": "D8darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "CachedDiskBytes", "value": "400000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ds_v4": {"location": "westus2", "vm_size": "Standard_D8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ds_v4", "tier": "Standard", "size": "D8ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ds_v5": {"location": "westus2", "vm_size": "Standard_D8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ds_v5", "tier": "Standard", "size": "D8ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8d_v4": {"location": "westus2", "vm_size": "Standard_D8d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8d_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8d_v4", "tier": "Standard", "size": "D8d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8d_v5": {"location": "westus2", "vm_size": "Standard_D8d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8d_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8d_v5", "tier": "Standard", "size": "D8d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8hs_v3": {"location": "westus2", "vm_size": "Standard_D8hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D8hs_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8hs_v3", "tier": "Standard", "size": "D8hs_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8lds_v5": {"location": "westus2", "vm_size": "Standard_D8lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8lds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8lds_v5", "tier": "Standard", "size": "D8lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ls_v5": {"location": "westus2", "vm_size": "Standard_D8ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ls_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ls_v5", "tier": "Standard", "size": "D8ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8pds_v5": {"location": "westus2", "vm_size": "Standard_D8pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8pds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8pds_v5", "tier": "Standard", "size": "D8pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8plds_v5": {"location": "westus2", "vm_size": "Standard_D8plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8plds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8plds_v5", "tier": "Standard", "size": "D8plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8pls_v5": {"location": "westus2", "vm_size": "Standard_D8pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8pls_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8pls_v5", "tier": "Standard", "size": "D8pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ps_v5": {"location": "westus2", "vm_size": "Standard_D8ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ps_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ps_v5", "tier": "Standard", "size": "D8ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8s_v3": {"location": "westus2", "vm_size": "Standard_D8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8s_v3", "tier": "Standard", "size": "D8s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8s_v4": {"location": "westus2", "vm_size": "Standard_D8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8s_v4", "tier": "Standard", "size": "D8s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8s_v5": {"location": "westus2", "vm_size": "Standard_D8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8s_v5", "tier": "Standard", "size": "D8s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8_v3": {"location": "westus2", "vm_size": "Standard_D8_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D8_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8_v3", "tier": "Standard", "size": "D8_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8_v4": {"location": "westus2", "vm_size": "Standard_D8_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8_v4", "tier": "Standard", "size": "D8_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8_v5": {"location": "westus2", "vm_size": "Standard_D8_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8_v5", "tier": "Standard", "size": "D8_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D96ads_v5": {"location": "westus2", "vm_size": "Standard_D96ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96ads_v5", "tier": "Standard", "size": "D96ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96alds_v5": {"location": "westus2", "vm_size": "Standard_D96alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96alds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96alds_v5", "tier": "Standard", "size": "D96alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96als_v5": {"location": "westus2", "vm_size": "Standard_D96als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96als_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96als_v5", "tier": "Standard", "size": "D96als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96as_v4": {"location": "westus2", "vm_size": "Standard_D96as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D96as_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96as_v4", "tier": "Standard", "size": "D96as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96as_v5": {"location": "westus2", "vm_size": "Standard_D96as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96as_v5", "tier": "Standard", "size": "D96as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D96as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D96as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96as_v5_Promo", "tier": "Standard", "size": "D96as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96a_v4": {"location": "westus2", "vm_size": "Standard_D96a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D96a_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96a_v4", "tier": "Standard", "size": "D96a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96ds_v5": {"location": "westus2", "vm_size": "Standard_D96ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96ds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96ds_v5", "tier": "Standard", "size": "D96ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96d_v5": {"location": "westus2", "vm_size": "Standard_D96d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96d_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96d_v5", "tier": "Standard", "size": "D96d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96lds_v5": {"location": "westus2", "vm_size": "Standard_D96lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96lds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96lds_v5", "tier": "Standard", "size": "D96lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96ls_v5": {"location": "westus2", "vm_size": "Standard_D96ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96ls_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96ls_v5", "tier": "Standard", "size": "D96ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96s_v5": {"location": "westus2", "vm_size": "Standard_D96s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96s_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96s_v5", "tier": "Standard", "size": "D96s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96_v5": {"location": "westus2", "vm_size": "Standard_D96_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96_v5", "tier": "Standard", "size": "D96_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC16ds_v3": {"location": "westus2", "vm_size": "Standard_DC16ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC16ds_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC16ds_v3", "tier": "Standard", "size": "DC16ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC16s_v3": {"location": "westus2", "vm_size": "Standard_DC16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC16s_v3", "tier": "Standard", "size": "DC16s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC1ds_v3": {"location": "westus2", "vm_size": "Standard_DC1ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC1ds_v3", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC1ds_v3", "tier": "Standard", "size": "DC1ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "9500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9500000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC1s_v2": {"location": "westus2", "vm_size": "Standard_DC1s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC1s_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC1s_v2", "tier": "Standard", "size": "DC1s_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "22020096"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC1s_v3": {"location": "westus2", "vm_size": "Standard_DC1s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC1s_v3", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC1s_v3", "tier": "Standard", "size": "DC1s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "9500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9500000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC24ds_v3": {"location": "westus2", "vm_size": "Standard_DC24ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC24ds_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC24ds_v3", "tier": "Standard", "size": "DC24ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "231000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "231000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "231000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC24s_v3": {"location": "westus2", "vm_size": "Standard_DC24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC24s_v3", "tier": "Standard", "size": "DC24s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "231000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "231000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "231000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC2ds_v3": {"location": "westus2", "vm_size": "Standard_DC2ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC2ds_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC2ds_v3", "tier": "Standard", "size": "DC2ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC2s_v2": {"location": "westus2", "vm_size": "Standard_DC2s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC2s_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC2s_v2", "tier": "Standard", "size": "DC2s_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "45088768"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC2s_v3": {"location": "westus2", "vm_size": "Standard_DC2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC2s_v3", "tier": "Standard", "size": "DC2s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC32ds_v3": {"location": "westus2", "vm_size": "Standard_DC32ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC32ds_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC32ds_v3", "tier": "Standard", "size": "DC32ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC32s_v3": {"location": "westus2", "vm_size": "Standard_DC32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC32s_v3", "tier": "Standard", "size": "DC32s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC48ds_v3": {"location": "westus2", "vm_size": "Standard_DC48ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC48ds_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC48ds_v3", "tier": "Standard", "size": "DC48ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC48s_v3": {"location": "westus2", "vm_size": "Standard_DC48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC48s_v3", "tier": "Standard", "size": "DC48s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC4ds_v3": {"location": "westus2", "vm_size": "Standard_DC4ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC4ds_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC4ds_v3", "tier": "Standard", "size": "DC4ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DC4s_v2": {"location": "westus2", "vm_size": "Standard_DC4s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC4s_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC4s_v2", "tier": "Standard", "size": "DC4s_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "90177536"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC4s_v3": {"location": "westus2", "vm_size": "Standard_DC4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC4s_v3", "tier": "Standard", "size": "DC4s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DC8ds_v3": {"location": "westus2", "vm_size": "Standard_DC8ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC8ds_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC8ds_v3", "tier": "Standard", "size": "DC8ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC8s_v3": {"location": "westus2", "vm_size": "Standard_DC8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC8s_v3", "tier": "Standard", "size": "DC8s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC8_v2": {"location": "westus2", "vm_size": "Standard_DC8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC8_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC8_v2", "tier": "Standard", "size": "DC8_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "180355072"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "1"}], "restrictions": []}}, "Standard_DS11-1_v2": {"location": "westus2", "vm_size": "Standard_DS11-1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS11-1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS11-1_v2", "tier": "Standard", "size": "DS11-1_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS11_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "77309411328"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS11_v2": {"location": "westus2", "vm_size": "Standard_DS11_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS11_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS11_v2", "tier": "Standard", "size": "DS11_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "77309411328"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS11_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS11_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS11_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS11_v2_Promo", "tier": "Standard", "size": "DS11_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "77309411328"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS12-1_v2": {"location": "westus2", "vm_size": "Standard_DS12-1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS12-1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12-1_v2", "tier": "Standard", "size": "DS12-1_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS12_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS12-2_v2": {"location": "westus2", "vm_size": "Standard_DS12-2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS12-2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12-2_v2", "tier": "Standard", "size": "DS12-2_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS12_v2": {"location": "westus2", "vm_size": "Standard_DS12_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS12_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12_v2", "tier": "Standard", "size": "DS12_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS12_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS12_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS12_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS12_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12_v2_Promo", "tier": "Standard", "size": "DS12_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS13-2_v2": {"location": "westus2", "vm_size": "Standard_DS13-2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS13-2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13-2_v2", "tier": "Standard", "size": "DS13-2_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS13_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS13-4_v2": {"location": "westus2", "vm_size": "Standard_DS13-4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS13-4_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13-4_v2", "tier": "Standard", "size": "DS13-4_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS13_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS13_v2": {"location": "westus2", "vm_size": "Standard_DS13_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS13_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13_v2", "tier": "Standard", "size": "DS13_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS13_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS13_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS13_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13_v2_Promo", "tier": "Standard", "size": "DS13_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS14-4_v2": {"location": "westus2", "vm_size": "Standard_DS14-4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS14-4_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14-4_v2", "tier": "Standard", "size": "DS14-4_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS14_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS14-8_v2": {"location": "westus2", "vm_size": "Standard_DS14-8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS14-8_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14-8_v2", "tier": "Standard", "size": "DS14-8_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS14_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS14_v2": {"location": "westus2", "vm_size": "Standard_DS14_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS14_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14_v2", "tier": "Standard", "size": "DS14_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS14_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS14_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS14_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14_v2_Promo", "tier": "Standard", "size": "DS14_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS15i_v2": {"location": "westus2", "vm_size": "Standard_DS15i_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS15i_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS15i_v2", "tier": "Standard", "size": "DS15i_v2", "family": "standardDISv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "286720"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "655360000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "655360000"}, {"name": "CachedDiskBytes", "value": "773094113280"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "960000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS15_v2": {"location": "westus2", "vm_size": "Standard_DS15_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS15_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS15_v2", "tier": "Standard", "size": "DS15_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "286720"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "655360000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "655360000"}, {"name": "CachedDiskBytes", "value": "773094113280"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "960000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS1_v2": {"location": "westus2", "vm_size": "Standard_DS1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS1_v2", "tier": "Standard", "size": "DS1_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "7168"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "46170898432"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS2_v2": {"location": "westus2", "vm_size": "Standard_DS2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS2_v2", "tier": "Standard", "size": "DS2_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "14336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "92341796864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS2_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS2_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS2_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS2_v2_Promo", "tier": "Standard", "size": "DS2_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "14336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "92341796864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS3_v2": {"location": "westus2", "vm_size": "Standard_DS3_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS3_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS3_v2", "tier": "Standard", "size": "DS3_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "184683593728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS3_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS3_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS3_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS3_v2_Promo", "tier": "Standard", "size": "DS3_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "184683593728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS4_v2": {"location": "westus2", "vm_size": "Standard_DS4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS4_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS4_v2", "tier": "Standard", "size": "DS4_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "369367187456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS4_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS4_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS4_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS4_v2_Promo", "tier": "Standard", "size": "DS4_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "369367187456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS5_v2": {"location": "westus2", "vm_size": "Standard_DS5_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS5_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS5_v2", "tier": "Standard", "size": "DS5_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "738734374912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS5_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS5_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS5_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS5_v2_Promo", "tier": "Standard", "size": "DS5_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "738734374912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_E104ids_v5": {"location": "westus2", "vm_size": "Standard_E104ids_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104ids_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104ids_v5", "tier": "Standard", "size": "E104ids_v5", "family": "standardEIDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E104id_v5": {"location": "westus2", "vm_size": "Standard_E104id_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104id_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104id_v5", "tier": "Standard", "size": "E104id_v5", "family": "standardEIDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E104is_v5": {"location": "westus2", "vm_size": "Standard_E104is_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104is_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104is_v5", "tier": "Standard", "size": "E104is_v5", "family": "standardEISv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E104i_v5": {"location": "westus2", "vm_size": "Standard_E104i_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104i_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104i_v5", "tier": "Standard", "size": "E104i_v5", "family": "standardEIv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112iadms_v5": {"location": "westus2", "vm_size": "Standard_E112iadms_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112iadms_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112iadms_v5", "tier": "Standard", "size": "E112iadms_v5", "family": "standardG8HHIAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112iads_v5": {"location": "westus2", "vm_size": "Standard_E112iads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112iads_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112iads_v5", "tier": "Standard", "size": "E112iads_v5", "family": "standardEIADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112ias_v5": {"location": "westus2", "vm_size": "Standard_E112ias_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112ias_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112ias_v5", "tier": "Standard", "size": "E112ias_v5", "family": "standardEIASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112ibds_v5": {"location": "westus2", "vm_size": "Standard_E112ibds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112ibds_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112ibds_v5", "tier": "Standard", "size": "E112ibds_v5", "family": "standardEIBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112ibs_v5": {"location": "westus2", "vm_size": "Standard_E112ibs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112ibs_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112ibs_v5", "tier": "Standard", "size": "E112ibs_v5", "family": "standardEIBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4ads_v5": {"location": "westus2", "vm_size": "Standard_E16-4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4ads_v5", "tier": "Standard", "size": "E16-4ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4as_v4": {"location": "westus2", "vm_size": "Standard_E16-4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4as_v4", "tier": "Standard", "size": "E16-4as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4as_v5": {"location": "westus2", "vm_size": "Standard_E16-4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4as_v5", "tier": "Standard", "size": "E16-4as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4ds_v4": {"location": "westus2", "vm_size": "Standard_E16-4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4ds_v4", "tier": "Standard", "size": "E16-4ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4ds_v5": {"location": "westus2", "vm_size": "Standard_E16-4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4ds_v5", "tier": "Standard", "size": "E16-4ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E16ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4s_v3": {"location": "westus2", "vm_size": "Standard_E16-4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4s_v3", "tier": "Standard", "size": "E16-4s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4s_v4": {"location": "westus2", "vm_size": "Standard_E16-4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4s_v4", "tier": "Standard", "size": "E16-4s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4s_v5": {"location": "westus2", "vm_size": "Standard_E16-4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4s_v5", "tier": "Standard", "size": "E16-4s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E16s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8ads_v5": {"location": "westus2", "vm_size": "Standard_E16-8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8ads_v5", "tier": "Standard", "size": "E16-8ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8as_v4": {"location": "westus2", "vm_size": "Standard_E16-8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8as_v4", "tier": "Standard", "size": "E16-8as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8as_v5": {"location": "westus2", "vm_size": "Standard_E16-8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8as_v5", "tier": "Standard", "size": "E16-8as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8ds_v4": {"location": "westus2", "vm_size": "Standard_E16-8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8ds_v4", "tier": "Standard", "size": "E16-8ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8ds_v5": {"location": "westus2", "vm_size": "Standard_E16-8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8ds_v5", "tier": "Standard", "size": "E16-8ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E16ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8s_v3": {"location": "westus2", "vm_size": "Standard_E16-8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8s_v3", "tier": "Standard", "size": "E16-8s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8s_v4": {"location": "westus2", "vm_size": "Standard_E16-8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8s_v4", "tier": "Standard", "size": "E16-8s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8s_v5": {"location": "westus2", "vm_size": "Standard_E16-8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8s_v5", "tier": "Standard", "size": "E16-8s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E16s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ads_v5": {"location": "westus2", "vm_size": "Standard_E16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ads_v5", "tier": "Standard", "size": "E16ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16as_v4": {"location": "westus2", "vm_size": "Standard_E16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16as_v4", "tier": "Standard", "size": "E16as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16as_v5": {"location": "westus2", "vm_size": "Standard_E16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16as_v5", "tier": "Standard", "size": "E16as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E16as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E16as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16as_v5_Promo", "tier": "Standard", "size": "E16as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16a_v4": {"location": "westus2", "vm_size": "Standard_E16a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16a_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16a_v4", "tier": "Standard", "size": "E16a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16bds_v5": {"location": "westus2", "vm_size": "Standard_E16bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16bds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16bds_v5", "tier": "Standard", "size": "E16bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "UncachedDiskIOPS", "value": "44000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1250000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16bs_v5": {"location": "westus2", "vm_size": "Standard_E16bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16bs_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16bs_v5", "tier": "Standard", "size": "E16bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "UncachedDiskIOPS", "value": "44000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1250000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16darm_V3": {"location": "westus2", "vm_size": "Standard_E16darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E16darm_V3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16darm_V3", "tier": "Standard", "size": "E16darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "CachedDiskBytes", "value": "400000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ds_v4": {"location": "westus2", "vm_size": "Standard_E16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ds_v4", "tier": "Standard", "size": "E16ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E16ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E16ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 129024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ds_v4_ADHType1", "tier": "Standard", "size": "E16ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "126"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ds_v5": {"location": "westus2", "vm_size": "Standard_E16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ds_v5", "tier": "Standard", "size": "E16ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16d_v4": {"location": "westus2", "vm_size": "Standard_E16d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16d_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16d_v4", "tier": "Standard", "size": "E16d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16d_v5": {"location": "westus2", "vm_size": "Standard_E16d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16d_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16d_v5", "tier": "Standard", "size": "E16d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16pds_v5": {"location": "westus2", "vm_size": "Standard_E16pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16pds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16pds_v5", "tier": "Standard", "size": "E16pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E16ps_v5": {"location": "westus2", "vm_size": "Standard_E16ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16ps_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ps_v5", "tier": "Standard", "size": "E16ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E16s_v3": {"location": "westus2", "vm_size": "Standard_E16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v3", "tier": "Standard", "size": "E16s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16s_v4": {"location": "westus2", "vm_size": "Standard_E16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v4", "tier": "Standard", "size": "E16s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E16s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 129024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v4_ADHType1", "tier": "Standard", "size": "E16s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "126"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16s_v5": {"location": "westus2", "vm_size": "Standard_E16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v5", "tier": "Standard", "size": "E16s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16_v3": {"location": "westus2", "vm_size": "Standard_E16_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16_v3", "tier": "Standard", "size": "E16_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16_v4": {"location": "westus2", "vm_size": "Standard_E16_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16_v4", "tier": "Standard", "size": "E16_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16_v5": {"location": "westus2", "vm_size": "Standard_E16_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16_v5", "tier": "Standard", "size": "E16_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ads_v5": {"location": "westus2", "vm_size": "Standard_E20ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20ads_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ads_v5", "tier": "Standard", "size": "E20ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "94000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20as_v4": {"location": "westus2", "vm_size": "Standard_E20as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20as_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20as_v4", "tier": "Standard", "size": "E20as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "335544320"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20as_v5": {"location": "westus2", "vm_size": "Standard_E20as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20as_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20as_v5", "tier": "Standard", "size": "E20as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E20as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E20as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20as_v5_Promo", "tier": "Standard", "size": "E20as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20a_v4": {"location": "westus2", "vm_size": "Standard_E20a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20a_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20a_v4", "tier": "Standard", "size": "E20a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20darm_V3": {"location": "westus2", "vm_size": "Standard_E20darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E20darm_V3", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20darm_V3", "tier": "Standard", "size": "E20darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1211000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1211000000"}, {"name": "CachedDiskBytes", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ds_v4": {"location": "westus2", "vm_size": "Standard_E20ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20ds_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ds_v4", "tier": "Standard", "size": "E20ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "190000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1209008128"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "603979776"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ds_v5": {"location": "westus2", "vm_size": "Standard_E20ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20ds_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ds_v5", "tier": "Standard", "size": "E20ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20d_v4": {"location": "westus2", "vm_size": "Standard_E20d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20d_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20d_v4", "tier": "Standard", "size": "E20d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "190000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1209008128"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "603979776"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20d_v5": {"location": "westus2", "vm_size": "Standard_E20d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20d_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20d_v5", "tier": "Standard", "size": "E20d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20pds_v5": {"location": "westus2", "vm_size": "Standard_E20pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20pds_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20pds_v5", "tier": "Standard", "size": "E20pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "95000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1250000000"}, {"name": "CachedDiskBytes", "value": "536870912000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "750000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ps_v5": {"location": "westus2", "vm_size": "Standard_E20ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20ps_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ps_v5", "tier": "Standard", "size": "E20ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "95000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1250000000"}, {"name": "CachedDiskBytes", "value": "536870912000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "750000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20s_v3": {"location": "westus2", "vm_size": "Standard_E20s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E20s_v3", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20s_v3", "tier": "Standard", "size": "E20s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "335544320"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20s_v4": {"location": "westus2", "vm_size": "Standard_E20s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20s_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20s_v4", "tier": "Standard", "size": "E20s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20s_v5": {"location": "westus2", "vm_size": "Standard_E20s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20s_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20s_v5", "tier": "Standard", "size": "E20s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20_v3": {"location": "westus2", "vm_size": "Standard_E20_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E20_v3", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20_v3", "tier": "Standard", "size": "E20_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "30000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "491520000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "245760000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20_v4": {"location": "westus2", "vm_size": "Standard_E20_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20_v4", "tier": "Standard", "size": "E20_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20_v5": {"location": "westus2", "vm_size": "Standard_E20_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20_v5", "tier": "Standard", "size": "E20_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E2ads_v5": {"location": "westus2", "vm_size": "Standard_E2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ads_v5", "tier": "Standard", "size": "E2ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85983232"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2as_v4": {"location": "westus2", "vm_size": "Standard_E2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2as_v4", "tier": "Standard", "size": "E2as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2as_v5": {"location": "westus2", "vm_size": "Standard_E2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2as_v5", "tier": "Standard", "size": "E2as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85983232"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E2as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E2as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2as_v5_Promo", "tier": "Standard", "size": "E2as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2a_v4": {"location": "westus2", "vm_size": "Standard_E2a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2a_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2a_v4", "tier": "Standard", "size": "E2a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2bds_v5": {"location": "westus2", "vm_size": "Standard_E2bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2bds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2bds_v5", "tier": "Standard", "size": "E2bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "5500"}, {"name": "UncachedDiskBytesPerSecond", "value": "156000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2bs_v5": {"location": "westus2", "vm_size": "Standard_E2bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2bs_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2bs_v5", "tier": "Standard", "size": "E2bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "5500"}, {"name": "UncachedDiskBytesPerSecond", "value": "156000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2darm_V3": {"location": "westus2", "vm_size": "Standard_E2darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E2darm_V3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2darm_V3", "tier": "Standard", "size": "E2darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120000000"}, {"name": "CachedDiskBytes", "value": "50000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2ds_v4": {"location": "westus2", "vm_size": "Standard_E2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ds_v4", "tier": "Standard", "size": "E2ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2ds_v5": {"location": "westus2", "vm_size": "Standard_E2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ds_v5", "tier": "Standard", "size": "E2ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2d_v4": {"location": "westus2", "vm_size": "Standard_E2d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2d_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2d_v4", "tier": "Standard", "size": "E2d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2d_v5": {"location": "westus2", "vm_size": "Standard_E2d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2d_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2d_v5", "tier": "Standard", "size": "E2d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2pds_v5": {"location": "westus2", "vm_size": "Standard_E2pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2pds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2pds_v5", "tier": "Standard", "size": "E2pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2ps_v5": {"location": "westus2", "vm_size": "Standard_E2ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2ps_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ps_v5", "tier": "Standard", "size": "E2ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2s_v3": {"location": "westus2", "vm_size": "Standard_E2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2s_v3", "tier": "Standard", "size": "E2s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2s_v4": {"location": "westus2", "vm_size": "Standard_E2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2s_v4", "tier": "Standard", "size": "E2s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2s_v5": {"location": "westus2", "vm_size": "Standard_E2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2s_v5", "tier": "Standard", "size": "E2s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2_v3": {"location": "westus2", "vm_size": "Standard_E2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E2_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2_v3", "tier": "Standard", "size": "E2_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2_v4": {"location": "westus2", "vm_size": "Standard_E2_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2_v4", "tier": "Standard", "size": "E2_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2_v5": {"location": "westus2", "vm_size": "Standard_E2_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2_v5", "tier": "Standard", "size": "E2_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E32-16ads_v5": {"location": "westus2", "vm_size": "Standard_E32-16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16ads_v5", "tier": "Standard", "size": "E32-16ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16as_v4": {"location": "westus2", "vm_size": "Standard_E32-16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16as_v4", "tier": "Standard", "size": "E32-16as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16as_v5": {"location": "westus2", "vm_size": "Standard_E32-16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16as_v5", "tier": "Standard", "size": "E32-16as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16ds_v4": {"location": "westus2", "vm_size": "Standard_E32-16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16ds_v4", "tier": "Standard", "size": "E32-16ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16ds_v5": {"location": "westus2", "vm_size": "Standard_E32-16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16ds_v5", "tier": "Standard", "size": "E32-16ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E32ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16s_v3": {"location": "westus2", "vm_size": "Standard_E32-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16s_v3", "tier": "Standard", "size": "E32-16s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16s_v4": {"location": "westus2", "vm_size": "Standard_E32-16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16s_v4", "tier": "Standard", "size": "E32-16s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16s_v5": {"location": "westus2", "vm_size": "Standard_E32-16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16s_v5", "tier": "Standard", "size": "E32-16s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E32s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8ads_v5": {"location": "westus2", "vm_size": "Standard_E32-8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8ads_v5", "tier": "Standard", "size": "E32-8ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8as_v4": {"location": "westus2", "vm_size": "Standard_E32-8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8as_v4", "tier": "Standard", "size": "E32-8as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8as_v5": {"location": "westus2", "vm_size": "Standard_E32-8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8as_v5", "tier": "Standard", "size": "E32-8as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8ds_v4": {"location": "westus2", "vm_size": "Standard_E32-8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8ds_v4", "tier": "Standard", "size": "E32-8ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8ds_v5": {"location": "westus2", "vm_size": "Standard_E32-8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8ds_v5", "tier": "Standard", "size": "E32-8ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E32ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8s_v3": {"location": "westus2", "vm_size": "Standard_E32-8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8s_v3", "tier": "Standard", "size": "E32-8s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8s_v4": {"location": "westus2", "vm_size": "Standard_E32-8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8s_v4", "tier": "Standard", "size": "E32-8s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8s_v5": {"location": "westus2", "vm_size": "Standard_E32-8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8s_v5", "tier": "Standard", "size": "E32-8s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E32s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ads_v5": {"location": "westus2", "vm_size": "Standard_E32ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ads_v5", "tier": "Standard", "size": "E32ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32as_v4": {"location": "westus2", "vm_size": "Standard_E32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32as_v4", "tier": "Standard", "size": "E32as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32as_v5": {"location": "westus2", "vm_size": "Standard_E32as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32as_v5", "tier": "Standard", "size": "E32as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E32as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E32as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32as_v5_Promo", "tier": "Standard", "size": "E32as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32a_v4": {"location": "westus2", "vm_size": "Standard_E32a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32a_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32a_v4", "tier": "Standard", "size": "E32a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32bds_v5": {"location": "westus2", "vm_size": "Standard_E32bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32bds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32bds_v5", "tier": "Standard", "size": "E32bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "UncachedDiskIOPS", "value": "88000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2500000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32bs_v5": {"location": "westus2", "vm_size": "Standard_E32bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32bs_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32bs_v5", "tier": "Standard", "size": "E32bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "UncachedDiskIOPS", "value": "88000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32darm_V3": {"location": "westus2", "vm_size": "Standard_E32darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E32darm_V3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32darm_V3", "tier": "Standard", "size": "E32darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "CachedDiskBytes", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ds_v4": {"location": "westus2", "vm_size": "Standard_E32ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32ds_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ds_v4", "tier": "Standard", "size": "E32ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E32ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E32ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 258048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ds_v4_ADHType1", "tier": "Standard", "size": "E32ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "252"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ds_v5": {"location": "westus2", "vm_size": "Standard_E32ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32ds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ds_v5", "tier": "Standard", "size": "E32ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32d_v4": {"location": "westus2", "vm_size": "Standard_E32d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32d_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32d_v4", "tier": "Standard", "size": "E32d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32d_v5": {"location": "westus2", "vm_size": "Standard_E32d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32d_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32d_v5", "tier": "Standard", "size": "E32d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32pds_v5": {"location": "westus2", "vm_size": "Standard_E32pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32pds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32pds_v5", "tier": "Standard", "size": "E32pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ps_v5": {"location": "westus2", "vm_size": "Standard_E32ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32ps_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ps_v5", "tier": "Standard", "size": "E32ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v3": {"location": "westus2", "vm_size": "Standard_E32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v3", "tier": "Standard", "size": "E32s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v4": {"location": "westus2", "vm_size": "Standard_E32s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v4", "tier": "Standard", "size": "E32s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E32s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 258048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v4_ADHType1", "tier": "Standard", "size": "E32s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "252"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v5": {"location": "westus2", "vm_size": "Standard_E32s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v5", "tier": "Standard", "size": "E32s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32_v3": {"location": "westus2", "vm_size": "Standard_E32_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32_v3", "tier": "Standard", "size": "E32_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32_v4": {"location": "westus2", "vm_size": "Standard_E32_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32_v4", "tier": "Standard", "size": "E32_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32_v5": {"location": "westus2", "vm_size": "Standard_E32_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32_v5", "tier": "Standard", "size": "E32_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E4-2ads_v5": {"location": "westus2", "vm_size": "Standard_E4-2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2ads_v5", "tier": "Standard", "size": "E4-2ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E4ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2as_v4": {"location": "westus2", "vm_size": "Standard_E4-2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2as_v4", "tier": "Standard", "size": "E4-2as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E4as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2as_v5": {"location": "westus2", "vm_size": "Standard_E4-2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2as_v5", "tier": "Standard", "size": "E4-2as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E4as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2ds_v4": {"location": "westus2", "vm_size": "Standard_E4-2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2ds_v4", "tier": "Standard", "size": "E4-2ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E4ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2ds_v5": {"location": "westus2", "vm_size": "Standard_E4-2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2ds_v5", "tier": "Standard", "size": "E4-2ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E4ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2s_v3": {"location": "westus2", "vm_size": "Standard_E4-2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2s_v3", "tier": "Standard", "size": "E4-2s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E4s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2s_v4": {"location": "westus2", "vm_size": "Standard_E4-2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2s_v4", "tier": "Standard", "size": "E4-2s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E4s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2s_v5": {"location": "westus2", "vm_size": "Standard_E4-2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2s_v5", "tier": "Standard", "size": "E4-2s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E4s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E48ads_v5": {"location": "westus2", "vm_size": "Standard_E48ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48ads_v5", "tier": "Standard", "size": "E48ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48as_v4": {"location": "westus2", "vm_size": "Standard_E48as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48as_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48as_v4", "tier": "Standard", "size": "E48as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48as_v5": {"location": "westus2", "vm_size": "Standard_E48as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48as_v5", "tier": "Standard", "size": "E48as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E48as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E48as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48as_v5_Promo", "tier": "Standard", "size": "E48as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48a_v4": {"location": "westus2", "vm_size": "Standard_E48a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48a_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48a_v4", "tier": "Standard", "size": "E48a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48bds_v5": {"location": "westus2", "vm_size": "Standard_E48bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48bds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48bds_v5", "tier": "Standard", "size": "E48bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2904000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2904000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48bs_v5": {"location": "westus2", "vm_size": "Standard_E48bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48bs_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48bs_v5", "tier": "Standard", "size": "E48bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2904000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2904000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48darm_V3": {"location": "westus2", "vm_size": "Standard_E48darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E48darm_V3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48darm_V3", "tier": "Standard", "size": "E48darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1200000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48ds_v4": {"location": "westus2", "vm_size": "Standard_E48ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48ds_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48ds_v4", "tier": "Standard", "size": "E48ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48ds_v5": {"location": "westus2", "vm_size": "Standard_E48ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48ds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48ds_v5", "tier": "Standard", "size": "E48ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48d_v4": {"location": "westus2", "vm_size": "Standard_E48d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48d_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48d_v4", "tier": "Standard", "size": "E48d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48d_v5": {"location": "westus2", "vm_size": "Standard_E48d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48d_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48d_v5", "tier": "Standard", "size": "E48d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48s_v3": {"location": "westus2", "vm_size": "Standard_E48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48s_v3", "tier": "Standard", "size": "E48s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48s_v4": {"location": "westus2", "vm_size": "Standard_E48s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48s_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48s_v4", "tier": "Standard", "size": "E48s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48s_v5": {"location": "westus2", "vm_size": "Standard_E48s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48s_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48s_v5", "tier": "Standard", "size": "E48s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48_v3": {"location": "westus2", "vm_size": "Standard_E48_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E48_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48_v3", "tier": "Standard", "size": "E48_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48_v4": {"location": "westus2", "vm_size": "Standard_E48_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48_v4", "tier": "Standard", "size": "E48_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48_v5": {"location": "westus2", "vm_size": "Standard_E48_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48_v5", "tier": "Standard", "size": "E48_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E4ads_v5": {"location": "westus2", "vm_size": "Standard_E4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ads_v5", "tier": "Standard", "size": "E4ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4as_v4": {"location": "westus2", "vm_size": "Standard_E4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4as_v4", "tier": "Standard", "size": "E4as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4as_v5": {"location": "westus2", "vm_size": "Standard_E4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4as_v5", "tier": "Standard", "size": "E4as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E4as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E4as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4as_v5_Promo", "tier": "Standard", "size": "E4as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4a_v4": {"location": "westus2", "vm_size": "Standard_E4a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4a_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4a_v4", "tier": "Standard", "size": "E4a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4bds_v5": {"location": "westus2", "vm_size": "Standard_E4bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4bds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4bds_v5", "tier": "Standard", "size": "E4bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "18750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "UncachedDiskIOPS", "value": "11000"}, {"name": "UncachedDiskBytesPerSecond", "value": "350000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4bs_v5": {"location": "westus2", "vm_size": "Standard_E4bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4bs_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4bs_v5", "tier": "Standard", "size": "E4bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "18750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "UncachedDiskIOPS", "value": "11000"}, {"name": "UncachedDiskBytesPerSecond", "value": "350000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4darm_V3": {"location": "westus2", "vm_size": "Standard_E4darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E4darm_V3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4darm_V3", "tier": "Standard", "size": "E4darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "CachedDiskBytes", "value": "100000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ds_v4": {"location": "westus2", "vm_size": "Standard_E4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ds_v4", "tier": "Standard", "size": "E4ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E4ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E4ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 31744, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ds_v4_ADHType1", "tier": "Standard", "size": "E4ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "31"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ds_v5": {"location": "westus2", "vm_size": "Standard_E4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ds_v5", "tier": "Standard", "size": "E4ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4d_v4": {"location": "westus2", "vm_size": "Standard_E4d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4d_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4d_v4", "tier": "Standard", "size": "E4d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4d_v5": {"location": "westus2", "vm_size": "Standard_E4d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4d_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4d_v5", "tier": "Standard", "size": "E4d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4pds_v5": {"location": "westus2", "vm_size": "Standard_E4pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4pds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4pds_v5", "tier": "Standard", "size": "E4pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ps_v5": {"location": "westus2", "vm_size": "Standard_E4ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4ps_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ps_v5", "tier": "Standard", "size": "E4ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v3": {"location": "westus2", "vm_size": "Standard_E4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v3", "tier": "Standard", "size": "E4s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v4": {"location": "westus2", "vm_size": "Standard_E4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v4", "tier": "Standard", "size": "E4s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E4s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 31744, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v4_ADHType1", "tier": "Standard", "size": "E4s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "31"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v5": {"location": "westus2", "vm_size": "Standard_E4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v5", "tier": "Standard", "size": "E4s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4_v3": {"location": "westus2", "vm_size": "Standard_E4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E4_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4_v3", "tier": "Standard", "size": "E4_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4_v4": {"location": "westus2", "vm_size": "Standard_E4_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4_v4", "tier": "Standard", "size": "E4_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4_v5": {"location": "westus2", "vm_size": "Standard_E4_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4_v5", "tier": "Standard", "size": "E4_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E64-16ads_v5": {"location": "westus2", "vm_size": "Standard_E64-16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16ads_v5", "tier": "Standard", "size": "E64-16ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16as_v4": {"location": "westus2", "vm_size": "Standard_E64-16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16as_v4", "tier": "Standard", "size": "E64-16as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16as_v5": {"location": "westus2", "vm_size": "Standard_E64-16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16as_v5", "tier": "Standard", "size": "E64-16as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16ds_v4": {"location": "westus2", "vm_size": "Standard_E64-16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16ds_v4", "tier": "Standard", "size": "E64-16ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16ds_v5": {"location": "westus2", "vm_size": "Standard_E64-16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16ds_v5", "tier": "Standard", "size": "E64-16ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E64ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16s_v3": {"location": "westus2", "vm_size": "Standard_E64-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16s_v3", "tier": "Standard", "size": "E64-16s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16s_v4": {"location": "westus2", "vm_size": "Standard_E64-16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16s_v4", "tier": "Standard", "size": "E64-16s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16s_v5": {"location": "westus2", "vm_size": "Standard_E64-16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16s_v5", "tier": "Standard", "size": "E64-16s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E64s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32ads_v5": {"location": "westus2", "vm_size": "Standard_E64-32ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32ads_v5", "tier": "Standard", "size": "E64-32ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32as_v4": {"location": "westus2", "vm_size": "Standard_E64-32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32as_v4", "tier": "Standard", "size": "E64-32as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32as_v5": {"location": "westus2", "vm_size": "Standard_E64-32as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32as_v5", "tier": "Standard", "size": "E64-32as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32ds_v4": {"location": "westus2", "vm_size": "Standard_E64-32ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32ds_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32ds_v4", "tier": "Standard", "size": "E64-32ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32ds_v5": {"location": "westus2", "vm_size": "Standard_E64-32ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32ds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32ds_v5", "tier": "Standard", "size": "E64-32ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ParentSize", "value": "Standard_E64ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32s_v3": {"location": "westus2", "vm_size": "Standard_E64-32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32s_v3", "tier": "Standard", "size": "E64-32s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32s_v4": {"location": "westus2", "vm_size": "Standard_E64-32s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32s_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32s_v4", "tier": "Standard", "size": "E64-32s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32s_v5": {"location": "westus2", "vm_size": "Standard_E64-32s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32s_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32s_v5", "tier": "Standard", "size": "E64-32s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ParentSize", "value": "Standard_E64s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64ads_v5": {"location": "westus2", "vm_size": "Standard_E64ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64ads_v5", "tier": "Standard", "size": "E64ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64as_v4": {"location": "westus2", "vm_size": "Standard_E64as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64as_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64as_v4", "tier": "Standard", "size": "E64as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64as_v5": {"location": "westus2", "vm_size": "Standard_E64as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64as_v5", "tier": "Standard", "size": "E64as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E64as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E64as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64as_v5_Promo", "tier": "Standard", "size": "E64as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64a_v4": {"location": "westus2", "vm_size": "Standard_E64a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64a_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64a_v4", "tier": "Standard", "size": "E64a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64bds_v5": {"location": "westus2", "vm_size": "Standard_E64bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64bds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64bds_v5", "tier": "Standard", "size": "E64bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64bs_v5": {"location": "westus2", "vm_size": "Standard_E64bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64bs_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64bs_v5", "tier": "Standard", "size": "E64bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64ds_v4": {"location": "westus2", "vm_size": "Standard_E64ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64ds_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64ds_v4", "tier": "Standard", "size": "E64ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64ds_v5": {"location": "westus2", "vm_size": "Standard_E64ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64ds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64ds_v5", "tier": "Standard", "size": "E64ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64d_v4": {"location": "westus2", "vm_size": "Standard_E64d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64d_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64d_v4", "tier": "Standard", "size": "E64d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64d_v5": {"location": "westus2", "vm_size": "Standard_E64d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64d_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64d_v5", "tier": "Standard", "size": "E64d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64is_v3": {"location": "westus2", "vm_size": "Standard_E64is_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64is_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64is_v3", "tier": "Standard", "size": "E64is_v3", "family": "standardEISv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64is_v4_SPECIAL": {"location": "westus2", "vm_size": "Standard_E64is_v4_SPECIAL", "capability": {"type": "requirement", "name": "westus2_Standard_E64is_v4_SPECIAL", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64is_v4_SPECIAL", "tier": "Standard", "size": "E64is_v4_SPECIAL", "family": "standardEISv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64i_v3": {"location": "westus2", "vm_size": "Standard_E64i_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64i_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64i_v3", "tier": "Standard", "size": "E64i_v3", "family": "standardEIv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64i_v4_SPECIAL": {"location": "westus2", "vm_size": "Standard_E64i_v4_SPECIAL", "capability": {"type": "requirement", "name": "westus2_Standard_E64i_v4_SPECIAL", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64i_v4_SPECIAL", "tier": "Standard", "size": "E64i_v4_SPECIAL", "family": "standardEIv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64s_v3": {"location": "westus2", "vm_size": "Standard_E64s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64s_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64s_v3", "tier": "Standard", "size": "E64s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64s_v4": {"location": "westus2", "vm_size": "Standard_E64s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64s_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64s_v4", "tier": "Standard", "size": "E64s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64s_v5": {"location": "westus2", "vm_size": "Standard_E64s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64s_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64s_v5", "tier": "Standard", "size": "E64s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64_v3": {"location": "westus2", "vm_size": "Standard_E64_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64_v3", "tier": "Standard", "size": "E64_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64_v4": {"location": "westus2", "vm_size": "Standard_E64_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64_v4", "tier": "Standard", "size": "E64_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64_v5": {"location": "westus2", "vm_size": "Standard_E64_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64_v5", "tier": "Standard", "size": "E64_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E8-2ads_v5": {"location": "westus2", "vm_size": "Standard_E8-2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2ads_v5", "tier": "Standard", "size": "E8-2ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2as_v4": {"location": "westus2", "vm_size": "Standard_E8-2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2as_v4", "tier": "Standard", "size": "E8-2as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2as_v5": {"location": "westus2", "vm_size": "Standard_E8-2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2as_v5", "tier": "Standard", "size": "E8-2as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2ds_v4": {"location": "westus2", "vm_size": "Standard_E8-2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2ds_v4", "tier": "Standard", "size": "E8-2ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2ds_v5": {"location": "westus2", "vm_size": "Standard_E8-2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2ds_v5", "tier": "Standard", "size": "E8-2ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E8ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2s_v3": {"location": "westus2", "vm_size": "Standard_E8-2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2s_v3", "tier": "Standard", "size": "E8-2s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E8s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2s_v4": {"location": "westus2", "vm_size": "Standard_E8-2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2s_v4", "tier": "Standard", "size": "E8-2s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E8-2s_v5": {"location": "westus2", "vm_size": "Standard_E8-2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2s_v5", "tier": "Standard", "size": "E8-2s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E8s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4ads_v5": {"location": "westus2", "vm_size": "Standard_E8-4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4ads_v5", "tier": "Standard", "size": "E8-4ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4as_v4": {"location": "westus2", "vm_size": "Standard_E8-4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4as_v4", "tier": "Standard", "size": "E8-4as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4as_v5": {"location": "westus2", "vm_size": "Standard_E8-4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4as_v5", "tier": "Standard", "size": "E8-4as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4ds_v4": {"location": "westus2", "vm_size": "Standard_E8-4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4ds_v4", "tier": "Standard", "size": "E8-4ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4ds_v5": {"location": "westus2", "vm_size": "Standard_E8-4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4ds_v5", "tier": "Standard", "size": "E8-4ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E8ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4s_v3": {"location": "westus2", "vm_size": "Standard_E8-4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4s_v3", "tier": "Standard", "size": "E8-4s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E8s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4s_v4": {"location": "westus2", "vm_size": "Standard_E8-4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4s_v4", "tier": "Standard", "size": "E8-4s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4s_v5": {"location": "westus2", "vm_size": "Standard_E8-4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4s_v5", "tier": "Standard", "size": "E8-4s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E8s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E80ids_v4": {"location": "westus2", "vm_size": "Standard_E80ids_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E80ids_v4", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E80ids_v4", "tier": "Standard", "size": "E80ids_v4", "family": "standardXEIDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E80is_v4": {"location": "westus2", "vm_size": "Standard_E80is_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E80is_v4", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E80is_v4", "tier": "Standard", "size": "E80is_v4", "family": "standardXEISv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E8ads_v5": {"location": "westus2", "vm_size": "Standard_E8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ads_v5", "tier": "Standard", "size": "E8ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8as_v4": {"location": "westus2", "vm_size": "Standard_E8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8as_v4", "tier": "Standard", "size": "E8as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8as_v5": {"location": "westus2", "vm_size": "Standard_E8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8as_v5", "tier": "Standard", "size": "E8as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E8as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E8as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8as_v5_Promo", "tier": "Standard", "size": "E8as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8a_v4": {"location": "westus2", "vm_size": "Standard_E8a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8a_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8a_v4", "tier": "Standard", "size": "E8a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8bds_v5": {"location": "westus2", "vm_size": "Standard_E8bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8bds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8bds_v5", "tier": "Standard", "size": "E8bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "37500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "UncachedDiskIOPS", "value": "22000"}, {"name": "UncachedDiskBytesPerSecond", "value": "625000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8bs_v5": {"location": "westus2", "vm_size": "Standard_E8bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8bs_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8bs_v5", "tier": "Standard", "size": "E8bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "37500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "UncachedDiskIOPS", "value": "22000"}, {"name": "UncachedDiskBytesPerSecond", "value": "625000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8darm_V3": {"location": "westus2", "vm_size": "Standard_E8darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E8darm_V3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8darm_V3", "tier": "Standard", "size": "E8darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "CachedDiskBytes", "value": "200000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ds_v4": {"location": "westus2", "vm_size": "Standard_E8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ds_v4", "tier": "Standard", "size": "E8ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E8ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E8ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 64512, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ds_v4_ADHType1", "tier": "Standard", "size": "E8ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "63"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ds_v5": {"location": "westus2", "vm_size": "Standard_E8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ds_v5", "tier": "Standard", "size": "E8ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8d_v4": {"location": "westus2", "vm_size": "Standard_E8d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8d_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8d_v4", "tier": "Standard", "size": "E8d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8d_v5": {"location": "westus2", "vm_size": "Standard_E8d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8d_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8d_v5", "tier": "Standard", "size": "E8d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8pds_v5": {"location": "westus2", "vm_size": "Standard_E8pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8pds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8pds_v5", "tier": "Standard", "size": "E8pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ps_v5": {"location": "westus2", "vm_size": "Standard_E8ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8ps_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ps_v5", "tier": "Standard", "size": "E8ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v3": {"location": "westus2", "vm_size": "Standard_E8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v3", "tier": "Standard", "size": "E8s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v4": {"location": "westus2", "vm_size": "Standard_E8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v4", "tier": "Standard", "size": "E8s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E8s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 64512, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v4_ADHType1", "tier": "Standard", "size": "E8s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "63"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v5": {"location": "westus2", "vm_size": "Standard_E8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v5", "tier": "Standard", "size": "E8s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8_v3": {"location": "westus2", "vm_size": "Standard_E8_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8_v3", "tier": "Standard", "size": "E8_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8_v4": {"location": "westus2", "vm_size": "Standard_E8_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8_v4", "tier": "Standard", "size": "E8_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8_v5": {"location": "westus2", "vm_size": "Standard_E8_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8_v5", "tier": "Standard", "size": "E8_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E96-24ads_v5": {"location": "westus2", "vm_size": "Standard_E96-24ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24ads_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24ads_v5", "tier": "Standard", "size": "E96-24ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24as_v4": {"location": "westus2", "vm_size": "Standard_E96-24as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24as_v4", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24as_v4", "tier": "Standard", "size": "E96-24as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24as_v5": {"location": "westus2", "vm_size": "Standard_E96-24as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24as_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24as_v5", "tier": "Standard", "size": "E96-24as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24ds_v5": {"location": "westus2", "vm_size": "Standard_E96-24ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24ds_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24ds_v5", "tier": "Standard", "size": "E96-24ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ParentSize", "value": "Standard_E96ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24s_v5": {"location": "westus2", "vm_size": "Standard_E96-24s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24s_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24s_v5", "tier": "Standard", "size": "E96-24s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ParentSize", "value": "Standard_E96s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48ads_v5": {"location": "westus2", "vm_size": "Standard_E96-48ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48ads_v5", "tier": "Standard", "size": "E96-48ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48as_v4": {"location": "westus2", "vm_size": "Standard_E96-48as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48as_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48as_v4", "tier": "Standard", "size": "E96-48as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48as_v5": {"location": "westus2", "vm_size": "Standard_E96-48as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48as_v5", "tier": "Standard", "size": "E96-48as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48ds_v5": {"location": "westus2", "vm_size": "Standard_E96-48ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48ds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48ds_v5", "tier": "Standard", "size": "E96-48ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ParentSize", "value": "Standard_E96ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48s_v5": {"location": "westus2", "vm_size": "Standard_E96-48s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48s_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48s_v5", "tier": "Standard", "size": "E96-48s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ParentSize", "value": "Standard_E96s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ads_v5": {"location": "westus2", "vm_size": "Standard_E96ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ads_v5", "tier": "Standard", "size": "E96ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96as_v4": {"location": "westus2", "vm_size": "Standard_E96as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96as_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96as_v4", "tier": "Standard", "size": "E96as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96as_v5": {"location": "westus2", "vm_size": "Standard_E96as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96as_v5", "tier": "Standard", "size": "E96as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E96as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E96as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96as_v5_Promo", "tier": "Standard", "size": "E96as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96a_v4": {"location": "westus2", "vm_size": "Standard_E96a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96a_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96a_v4", "tier": "Standard", "size": "E96a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96bds_v5": {"location": "westus2", "vm_size": "Standard_E96bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96bds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96bds_v5", "tier": "Standard", "size": "E96bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96bs_v5": {"location": "westus2", "vm_size": "Standard_E96bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96bs_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96bs_v5", "tier": "Standard", "size": "E96bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ds_v5": {"location": "westus2", "vm_size": "Standard_E96ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96ds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ds_v5", "tier": "Standard", "size": "E96ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96d_v5": {"location": "westus2", "vm_size": "Standard_E96d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96d_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96d_v5", "tier": "Standard", "size": "E96d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96iads_v5": {"location": "westus2", "vm_size": "Standard_E96iads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96iads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96iads_v5", "tier": "Standard", "size": "E96iads_v5", "family": "standardEIADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ias_v4": {"location": "westus2", "vm_size": "Standard_E96ias_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96ias_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ias_v4", "tier": "Standard", "size": "E96ias_v4", "family": "standardEIASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1070000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1070000000"}, {"name": "CachedDiskBytes", "value": "19200000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1260000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ias_v5": {"location": "westus2", "vm_size": "Standard_E96ias_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96ias_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ias_v5", "tier": "Standard", "size": "E96ias_v5", "family": "standardEIASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96s_v5": {"location": "westus2", "vm_size": "Standard_E96s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96s_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96s_v5", "tier": "Standard", "size": "E96s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96_v5": {"location": "westus2", "vm_size": "Standard_E96_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96_v5", "tier": "Standard", "size": "E96_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F1": {"location": "westus2", "vm_size": "Standard_F1", "capability": {"type": "requirement", "name": "westus2_Standard_F1", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F1", "tier": "Standard", "size": "F1", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F16": {"location": "westus2", "vm_size": "Standard_F16", "capability": {"type": "requirement", "name": "westus2_Standard_F16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F16", "tier": "Standard", "size": "F16", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F16s": {"location": "westus2", "vm_size": "Standard_F16s", "capability": {"type": "requirement", "name": "westus2_Standard_F16s", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F16s", "tier": "Standard", "size": "F16s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "206158430208"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F16s_v2": {"location": "westus2", "vm_size": "Standard_F16s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F16s_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F16s_v2", "tier": "Standard", "size": "F16s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "274877906944"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_F1s": {"location": "westus2", "vm_size": "Standard_F1s", "capability": {"type": "requirement", "name": "westus2_Standard_F1s", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F1s", "tier": "Standard", "size": "F1s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "12884901888"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2": {"location": "westus2", "vm_size": "Standard_F2", "capability": {"type": "requirement", "name": "westus2_Standard_F2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2", "tier": "Standard", "size": "F2", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2hs_v2": {"location": "westus2", "vm_size": "Standard_F2hs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F2hs_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2hs_v2", "tier": "Standard", "size": "F2hs_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2s": {"location": "westus2", "vm_size": "Standard_F2s", "capability": {"type": "requirement", "name": "westus2_Standard_F2s", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2s", "tier": "Standard", "size": "F2s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "25769803776"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2s_v2": {"location": "westus2", "vm_size": "Standard_F2s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F2s_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2s_v2", "tier": "Standard", "size": "F2s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32505856"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32505856"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "49283072"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F32s_v2": {"location": "westus2", "vm_size": "Standard_F32s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F32s_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F32s_v2", "tier": "Standard", "size": "F32s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "549755813888"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F4": {"location": "westus2", "vm_size": "Standard_F4", "capability": {"type": "requirement", "name": "westus2_Standard_F4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F4", "tier": "Standard", "size": "F4", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_F48s_v2": {"location": "westus2", "vm_size": "Standard_F48s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F48s_v2", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F48s_v2", "tier": "Standard", "size": "F48s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "824633720832"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F4s": {"location": "westus2", "vm_size": "Standard_F4s", "capability": {"type": "requirement", "name": "westus2_Standard_F4s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F4s", "tier": "Standard", "size": "F4s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "51539607552"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_F4s_v2": {"location": "westus2", "vm_size": "Standard_F4s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F4s_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F4s_v2", "tier": "Standard", "size": "F4s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F64s_v2": {"location": "westus2", "vm_size": "Standard_F64s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F64s_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F64s_v2", "tier": "Standard", "size": "F64s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F72s_v2": {"location": "westus2", "vm_size": "Standard_F72s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F72s_v2", "is_default": false, "node_count": 1, "core_count": 72, "memory_mb": 147456, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F72s_v2", "tier": "Standard", "size": "F72s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "589824"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "72"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "144"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "72"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "144000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1207959552"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1207959552"}, {"name": "CachedDiskBytes", "value": "1632087572480"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F8": {"location": "westus2", "vm_size": "Standard_F8", "capability": {"type": "requirement", "name": "westus2_Standard_F8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F8", "tier": "Standard", "size": "F8", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F8s": {"location": "westus2", "vm_size": "Standard_F8s", "capability": {"type": "requirement", "name": "westus2_Standard_F8s", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F8s", "tier": "Standard", "size": "F8s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "103079215104"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F8s_v2": {"location": "westus2", "vm_size": "Standard_F8s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F8s_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F8s_v2", "tier": "Standard", "size": "F8s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_FX12mds": {"location": "westus2", "vm_size": "Standard_FX12mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX12mds", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 258048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX12mds", "tier": "Standard", "size": "FX12mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "516096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "252"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "163500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1028653056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1028653056"}, {"name": "CachedDiskBytes", "value": "579821000000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "314572800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_FX24mds": {"location": "westus2", "vm_size": "Standard_FX24mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX24mds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX24mds", "tier": "Standard", "size": "FX24mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1032192"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "327000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2057306112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2057306112"}, {"name": "CachedDiskBytes", "value": "1159640000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_FX36mds": {"location": "westus2", "vm_size": "Standard_FX36mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX36mds", "is_default": false, "node_count": 1, "core_count": 36, "memory_mb": 774144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX36mds", "tier": "Standard", "size": "FX36mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1548288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "36"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "756"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "36"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "490500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3085959168"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3085959168"}, {"name": "CachedDiskBytes", "value": "1739460000000"}, {"name": "UncachedDiskIOPS", "value": "60000"}, {"name": "UncachedDiskBytesPerSecond", "value": "943718400"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_FX48mds": {"location": "westus2", "vm_size": "Standard_FX48mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX48mds", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 1032192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX48mds", "tier": "Standard", "size": "FX48mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2064384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1008"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3871342592"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3871342592"}, {"name": "CachedDiskBytes", "value": "2319280000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_FX4mds": {"location": "westus2", "vm_size": "Standard_FX4mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX4mds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 86016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX4mds", "tier": "Standard", "size": "FX4mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "172032"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "84"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "54500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "342884352"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "342884352"}, {"name": "CachedDiskBytes", "value": "193274000000"}, {"name": "UncachedDiskIOPS", "value": "6700"}, {"name": "UncachedDiskBytesPerSecond", "value": "104857600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_G1": {"location": "westus2", "vm_size": "Standard_G1", "capability": {"type": "requirement", "name": "westus2_Standard_G1", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G1", "tier": "Standard", "size": "G1", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "125000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G2": {"location": "westus2", "vm_size": "Standard_G2", "capability": {"type": "requirement", "name": "westus2_Standard_G2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G2", "tier": "Standard", "size": "G2", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "250000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G3": {"location": "westus2", "vm_size": "Standard_G3", "capability": {"type": "requirement", "name": "westus2_Standard_G3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G3", "tier": "Standard", "size": "G3", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1572864"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G4": {"location": "westus2", "vm_size": "Standard_G4", "capability": {"type": "requirement", "name": "westus2_Standard_G4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G4", "tier": "Standard", "size": "G4", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3145728"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G5": {"location": "westus2", "vm_size": "Standard_G5", "capability": {"type": "requirement", "name": "westus2_Standard_G5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G5", "tier": "Standard", "size": "G5", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "6291456"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1572864000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "786432000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS1": {"location": "westus2", "vm_size": "Standard_GS1", "capability": {"type": "requirement", "name": "westus2_Standard_GS1", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS1", "tier": "Standard", "size": "GS1", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "283467841536"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS2": {"location": "westus2", "vm_size": "Standard_GS2", "capability": {"type": "requirement", "name": "westus2_Standard_GS2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS2", "tier": "Standard", "size": "GS2", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "566935683072"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS3": {"location": "westus2", "vm_size": "Standard_GS3", "capability": {"type": "requirement", "name": "westus2_Standard_GS3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS3", "tier": "Standard", "size": "GS3", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "1133871366144"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS4": {"location": "westus2", "vm_size": "Standard_GS4", "capability": {"type": "requirement", "name": "westus2_Standard_GS4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS4", "tier": "Standard", "size": "GS4", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "458752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "2267742732288"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS4-4": {"location": "westus2", "vm_size": "Standard_GS4-4", "capability": {"type": "requirement", "name": "westus2_Standard_GS4-4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS4-4", "tier": "Standard", "size": "GS4-4", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "458752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "2267742732288"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS4-8": {"location": "westus2", "vm_size": "Standard_GS4-8", "capability": {"type": "requirement", "name": "westus2_Standard_GS4-8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS4-8", "tier": "Standard", "size": "GS4-8", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "458752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "2267742732288"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS5": {"location": "westus2", "vm_size": "Standard_GS5", "capability": {"type": "requirement", "name": "westus2_Standard_GS5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS5", "tier": "Standard", "size": "GS5", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "917504"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "4535485464576"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS5-16": {"location": "westus2", "vm_size": "Standard_GS5-16", "capability": {"type": "requirement", "name": "westus2_Standard_GS5-16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS5-16", "tier": "Standard", "size": "GS5-16", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "917504"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS5"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "4535485464576"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS5-8": {"location": "westus2", "vm_size": "Standard_GS5-8", "capability": {"type": "requirement", "name": "westus2_Standard_GS5-8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS5-8", "tier": "Standard", "size": "GS5-8", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "917504"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS5"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "4535485464576"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_HB120-16rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-16rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-16rs_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-16rs_v2", "tier": "Standard", "size": "HB120-16rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120-32rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-32rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-32rs_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-32rs_v2", "tier": "Standard", "size": "HB120-32rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120-64rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-64rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-64rs_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-64rs_v2", "tier": "Standard", "size": "HB120-64rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120-96rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-96rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-96rs_v2", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-96rs_v2", "tier": "Standard", "size": "HB120-96rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120rs_v2": {"location": "westus2", "vm_size": "Standard_HB120rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120rs_v2", "is_default": false, "node_count": 1, "core_count": 120, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120rs_v2", "tier": "Standard", "size": "HB120rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "120"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HC44-16rs": {"location": "westus2", "vm_size": "Standard_HC44-16rs", "capability": {"type": "requirement", "name": "westus2_Standard_HC44-16rs", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HC44-16rs", "tier": "Standard", "size": "HC44-16rs", "family": "standardHCSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "716800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "44"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_HC44rs"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1020"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "20971520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "CachedDiskBytes", "value": "23622320128"}, {"name": "UncachedDiskIOPS", "value": "1632"}, {"name": "UncachedDiskBytesPerSecond", "value": "24480000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HC44-32rs": {"location": "westus2", "vm_size": "Standard_HC44-32rs", "capability": {"type": "requirement", "name": "westus2_Standard_HC44-32rs", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HC44-32rs", "tier": "Standard", "size": "HC44-32rs", "family": "standardHCSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "716800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "44"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ParentSize", "value": "Standard_HC44rs"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1020"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "20971520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "CachedDiskBytes", "value": "23622320128"}, {"name": "UncachedDiskIOPS", "value": "1632"}, {"name": "UncachedDiskBytesPerSecond", "value": "24480000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HC44rs": {"location": "westus2", "vm_size": "Standard_HC44rs", "capability": {"type": "requirement", "name": "westus2_Standard_HC44rs", "is_default": false, "node_count": 1, "core_count": 44, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HC44rs", "tier": "Standard", "size": "HC44rs", "family": "standardHCSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "716800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "44"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L104is_v3": {"location": "westus2", "vm_size": "Standard_L104is_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L104is_v3", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L104is_v3", "tier": "Standard", "size": "L104is_v3", "family": "standardLISv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L112ias_v3": {"location": "westus2", "vm_size": "Standard_L112ias_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L112ias_v3", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L112ias_v3", "tier": "Standard", "size": "L112ias_v3", "family": "standardLIASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L16as_v3": {"location": "westus2", "vm_size": "Standard_L16as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L16as_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16as_v3", "tier": "Standard", "size": "L16as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L16s": {"location": "westus2", "vm_size": "Standard_L16s", "capability": {"type": "requirement", "name": "westus2_Standard_L16s", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16s", "tier": "Standard", "size": "L16s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2874368"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L16s_v2": {"location": "westus2", "vm_size": "Standard_L16s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L16s_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 2}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16s_v2", "tier": "Standard", "size": "L16s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "167772160"}, {"name": "UncachedDiskIOPS", "value": "16000"}, {"name": "UncachedDiskBytesPerSecond", "value": "335544320"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_L16s_v3": {"location": "westus2", "vm_size": "Standard_L16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16s_v3", "tier": "Standard", "size": "L16s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L32as_v3": {"location": "westus2", "vm_size": "Standard_L32as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L32as_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32as_v3", "tier": "Standard", "size": "L32as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "320000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "320000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L32s": {"location": "westus2", "vm_size": "Standard_L32s", "capability": {"type": "requirement", "name": "westus2_Standard_L32s", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32s", "tier": "Standard", "size": "L32s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5765120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L32s_v2": {"location": "westus2", "vm_size": "Standard_L32s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L32s_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 4}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32s_v2", "tier": "Standard", "size": "L32s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "335544320"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "671088640"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L32s_v3": {"location": "westus2", "vm_size": "Standard_L32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32s_v3", "tier": "Standard", "size": "L32s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "320000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "320000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L48as_v3": {"location": "westus2", "vm_size": "Standard_L48as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L48as_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L48as_v3", "tier": "Standard", "size": "L48as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "480000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "480000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "NvmeDiskSizeInMiB", "value": "10986324"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L48s_v2": {"location": "westus2", "vm_size": "Standard_L48s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L48s_v2", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 6}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L48s_v2", "tier": "Standard", "size": "L48s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "503316480"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "503316480"}, {"name": "UncachedDiskIOPS", "value": "48000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1006632960"}, {"name": "NvmeDiskSizeInMiB", "value": "10986324"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L48s_v3": {"location": "westus2", "vm_size": "Standard_L48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L48s_v3", "tier": "Standard", "size": "L48s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "480000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "480000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "NvmeDiskSizeInMiB", "value": "10986324"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L4s": {"location": "westus2", "vm_size": "Standard_L4s", "capability": {"type": "requirement", "name": "westus2_Standard_L4s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L4s", "tier": "Standard", "size": "L4s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "694272"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L64as_v3": {"location": "westus2", "vm_size": "Standard_L64as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L64as_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L64as_v3", "tier": "Standard", "size": "L64as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "655360"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "640000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "640000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1280000000"}, {"name": "NvmeDiskSizeInMiB", "value": "14648432"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L64s_v2": {"location": "westus2", "vm_size": "Standard_L64s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L64s_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 8}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L64s_v2", "tier": "Standard", "size": "L64s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "655360"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "671088640"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "671088640"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1342177280"}, {"name": "NvmeDiskSizeInMiB", "value": "14648432"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L64s_v3": {"location": "westus2", "vm_size": "Standard_L64s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L64s_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L64s_v3", "tier": "Standard", "size": "L64s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "655360"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "640000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "640000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "NvmeDiskSizeInMiB", "value": "14648432"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L80as_v3": {"location": "westus2", "vm_size": "Standard_L80as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L80as_v3", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L80as_v3", "tier": "Standard", "size": "L80as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L80s_v2": {"location": "westus2", "vm_size": "Standard_L80s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L80s_v2", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 10}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L80s_v2", "tier": "Standard", "size": "L80s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1468006400"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L80s_v3": {"location": "westus2", "vm_size": "Standard_L80s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L80s_v3", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L80s_v3", "tier": "Standard", "size": "L80s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2160000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L88is_v2": {"location": "westus2", "vm_size": "Standard_L88is_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L88is_v2", "is_default": false, "node_count": 1, "core_count": 88, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L88is_v2", "tier": "Standard", "size": "L88is_v2", "family": "standardLIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "88"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "88"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3800000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1468006400"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L8as_v3": {"location": "westus2", "vm_size": "Standard_L8as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L8as_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8as_v3", "tier": "Standard", "size": "L8as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "80000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "80000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "NvmeDiskSizeInMiB", "value": "1831054"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_L8s": {"location": "westus2", "vm_size": "Standard_L8s", "capability": {"type": "requirement", "name": "westus2_Standard_L8s", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8s", "tier": "Standard", "size": "L8s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1421312"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L8s_v2": {"location": "westus2", "vm_size": "Standard_L8s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L8s_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 1}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8s_v2", "tier": "Standard", "size": "L8s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "8000"}, {"name": "UncachedDiskBytesPerSecond", "value": "167772160"}, {"name": "NvmeDiskSizeInMiB", "value": "1831054"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_L8s_v3": {"location": "westus2", "vm_size": "Standard_L8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8s_v3", "tier": "Standard", "size": "L8s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "80000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "80000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "NvmeDiskSizeInMiB", "value": "1831054"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_M128": {"location": "westus2", "vm_size": "Standard_M128", "capability": {"type": "requirement", "name": "westus2_Standard_M128", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2048000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128", "tier": "Standard", "size": "M128", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2000"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "2637109919744"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128-32ms": {"location": "westus2", "vm_size": "Standard_M128-32ms", "capability": {"type": "requirement", "name": "westus2_Standard_M128-32ms", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128-32ms", "tier": "Standard", "size": "M128-32ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M128ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128-64ms": {"location": "westus2", "vm_size": "Standard_M128-64ms", "capability": {"type": "requirement", "name": "westus2_Standard_M128-64ms", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128-64ms", "tier": "Standard", "size": "M128-64ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M128ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128dms_v2": {"location": "westus2", "vm_size": "Standard_M128dms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128dms_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128dms_v2", "tier": "Standard", "size": "M128dms_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M128ds_v2": {"location": "westus2", "vm_size": "Standard_M128ds_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128ds_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128ds_v2", "tier": "Standard", "size": "M128ds_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M128m": {"location": "westus2", "vm_size": "Standard_M128m", "capability": {"type": "requirement", "name": "westus2_Standard_M128m", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128m", "tier": "Standard", "size": "M128m", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "2637109919744"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128ms": {"location": "westus2", "vm_size": "Standard_M128ms", "capability": {"type": "requirement", "name": "westus2_Standard_M128ms", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128ms", "tier": "Standard", "size": "M128ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128ms_v2": {"location": "westus2", "vm_size": "Standard_M128ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128ms_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128ms_v2", "tier": "Standard", "size": "M128ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M128s": {"location": "westus2", "vm_size": "Standard_M128s", "capability": {"type": "requirement", "name": "westus2_Standard_M128s", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2048000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128s", "tier": "Standard", "size": "M128s", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2000"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128s_v2": {"location": "westus2", "vm_size": "Standard_M128s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128s_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128s_v2", "tier": "Standard", "size": "M128s_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M12ds_v3": {"location": "westus2", "vm_size": "Standard_M12ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M12ds_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 245760, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M12ds_v3", "tier": "Standard", "size": "M12ds_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "240"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "848256040960"}, {"name": "UncachedDiskIOPS", "value": "16250"}, {"name": "UncachedDiskBytesPerSecond", "value": "390000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_M12s_v3": {"location": "westus2", "vm_size": "Standard_M12s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 245760, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M12s_v3", "tier": "Standard", "size": "M12s_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "240"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "848256040960"}, {"name": "UncachedDiskIOPS", "value": "16250"}, {"name": "UncachedDiskBytesPerSecond", "value": "390000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_M144ds_2_v3": {"location": "westus2", "vm_size": "Standard_M144ds_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144ds_2_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144ds_2_v3", "tier": "Standard", "size": "M144ds_2_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M144ds_4_v3": {"location": "westus2", "vm_size": "Standard_M144ds_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144ds_4_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 3670016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144ds_4_v3", "tier": "Standard", "size": "M144ds_4_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3584"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M144s_2_v3": {"location": "westus2", "vm_size": "Standard_M144s_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144s_2_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144s_2_v3", "tier": "Standard", "size": "M144s_2_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M144s_4_v3": {"location": "westus2", "vm_size": "Standard_M144s_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144s_4_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 3670016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144s_4_v3", "tier": "Standard", "size": "M144s_4_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3584"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M16-4ms": {"location": "westus2", "vm_size": "Standard_M16-4ms", "capability": {"type": "requirement", "name": "westus2_Standard_M16-4ms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 448000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M16-4ms", "tier": "Standard", "size": "M16-4ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "437.5"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "2"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M16ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "1704028274688"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M16-8ms": {"location": "westus2", "vm_size": "Standard_M16-8ms", "capability": {"type": "requirement", "name": "westus2_Standard_M16-8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 448000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M16-8ms", "tier": "Standard", "size": "M16-8ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "437.5"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "2"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M16ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "1704028274688"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M16ms": {"location": "westus2", "vm_size": "Standard_M16ms", "capability": {"type": "requirement", "name": "westus2_Standard_M16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 448000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M16ms", "tier": "Standard", "size": "M16ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "437.5"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "2"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "1704028274688"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M176bds_3_v3": {"location": "westus2", "vm_size": "Standard_M176bds_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176bds_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176bds_3_v3", "tier": "Standard", "size": "M176bds_3_v3", "family": "StandardMBDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176bs_3_v3": {"location": "westus2", "vm_size": "Standard_M176bs_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176bs_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176bs_3_v3", "tier": "Standard", "size": "M176bs_3_v3", "family": "StandardMBSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176ds_3_v3": {"location": "westus2", "vm_size": "Standard_M176ds_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176ds_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176ds_3_v3", "tier": "Standard", "size": "M176ds_3_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176ds_4_v3": {"location": "westus2", "vm_size": "Standard_M176ds_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176ds_4_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176ds_4_v3", "tier": "Standard", "size": "M176ds_4_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176s_3_v3": {"location": "westus2", "vm_size": "Standard_M176s_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176s_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176s_3_v3", "tier": "Standard", "size": "M176s_3_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176s_4_v3": {"location": "westus2", "vm_size": "Standard_M176s_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176s_4_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176s_4_v3", "tier": "Standard", "size": "M176s_4_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192idms_v2": {"location": "westus2", "vm_size": "Standard_M192idms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192idms_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 4194304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192idms_v2", "tier": "Standard", "size": "M192idms_v2", "family": "standardMIDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4096"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192ids_v2": {"location": "westus2", "vm_size": "Standard_M192ids_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192ids_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192ids_v2", "tier": "Standard", "size": "M192ids_v2", "family": "standardMIDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192ims_v2": {"location": "westus2", "vm_size": "Standard_M192ims_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192ims_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 4194304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192ims_v2", "tier": "Standard", "size": "M192ims_v2", "family": "standardMISMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4096"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192is_v2": {"location": "westus2", "vm_size": "Standard_M192is_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192is_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192is_v2", "tier": "Standard", "size": "M192is_v2", "family": "standardMISMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192ms_v2": {"location": "westus2", "vm_size": "Standard_M192ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192ms_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 4194304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192ms_v2", "tier": "Standard", "size": "M192ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4096"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M192s_v2": {"location": "westus2", "vm_size": "Standard_M192s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192s_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 2199019, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192s_v2", "tier": "Standard", "size": "M192s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "15393163"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2147.48"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-104ms_v2": {"location": "westus2", "vm_size": "Standard_M208-104ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-104ms_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-104ms_v2", "tier": "Standard", "size": "M208-104ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M208ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-104s_v2": {"location": "westus2", "vm_size": "Standard_M208-104s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-104s_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 2918400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-104s_v2", "tier": "Standard", "size": "M208-104s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2850"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M208s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-52ms_v2": {"location": "westus2", "vm_size": "Standard_M208-52ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-52ms_v2", "is_default": false, "node_count": 1, "core_count": 52, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-52ms_v2", "tier": "Standard", "size": "M208-52ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "52"}, {"name": "ParentSize", "value": "Standard_M208ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-52s_v2": {"location": "westus2", "vm_size": "Standard_M208-52s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-52s_v2", "is_default": false, "node_count": 1, "core_count": 52, "memory_mb": 2918400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-52s_v2", "tier": "Standard", "size": "M208-52s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2850"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "52"}, {"name": "ParentSize", "value": "Standard_M208s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208ms_v2": {"location": "westus2", "vm_size": "Standard_M208ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208ms_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208ms_v2", "tier": "Standard", "size": "M208ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208s_v2": {"location": "westus2", "vm_size": "Standard_M208s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208s_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 2918400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208s_v2", "tier": "Standard", "size": "M208s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2850"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M24ds_v3": {"location": "westus2", "vm_size": "Standard_M24ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M24ds_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 491520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M24ds_v3", "tier": "Standard", "size": "M24ds_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "480"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "200000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "200000000"}, {"name": "CachedDiskBytes", "value": "1696512081920"}, {"name": "UncachedDiskIOPS", "value": "32500"}, {"name": "UncachedDiskBytesPerSecond", "value": "780000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M24s_v3": {"location": "westus2", "vm_size": "Standard_M24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 491520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M24s_v3", "tier": "Standard", "size": "M24s_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "480"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "200000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "200000000"}, {"name": "CachedDiskBytes", "value": "1696512081920"}, {"name": "UncachedDiskIOPS", "value": "32500"}, {"name": "UncachedDiskBytesPerSecond", "value": "780000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M32-16ms": {"location": "westus2", "vm_size": "Standard_M32-16ms", "capability": {"type": "requirement", "name": "westus2_Standard_M32-16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32-16ms", "tier": "Standard", "size": "M32-16ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M32ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32-8ms": {"location": "westus2", "vm_size": "Standard_M32-8ms", "capability": {"type": "requirement", "name": "westus2_Standard_M32-8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32-8ms", "tier": "Standard", "size": "M32-8ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M32ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32dms_v2": {"location": "westus2", "vm_size": "Standard_M32dms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M32dms_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32dms_v2", "tier": "Standard", "size": "M32dms_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3410000000000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "500000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M32ls": {"location": "westus2", "vm_size": "Standard_M32ls", "capability": {"type": "requirement", "name": "westus2_Standard_M32ls", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ls", "tier": "Standard", "size": "M32ls", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32ms": {"location": "westus2", "vm_size": "Standard_M32ms", "capability": {"type": "requirement", "name": "westus2_Standard_M32ms", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ms", "tier": "Standard", "size": "M32ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32ms_v2": {"location": "westus2", "vm_size": "Standard_M32ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M32ms_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ms_v2", "tier": "Standard", "size": "M32ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3410000000000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M32ts": {"location": "westus2", "vm_size": "Standard_M32ts", "capability": {"type": "requirement", "name": "westus2_Standard_M32ts", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ts", "tier": "Standard", "size": "M32ts", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-104ms_v2": {"location": "westus2", "vm_size": "Standard_M416-104ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-104ms_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 11673600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-104ms_v2", "tier": "Standard", "size": "M416-104ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "11400"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M416ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-104s_v2": {"location": "westus2", "vm_size": "Standard_M416-104s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-104s_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-104s_v2", "tier": "Standard", "size": "M416-104s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M416s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-208ms_v2": {"location": "westus2", "vm_size": "Standard_M416-208ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-208ms_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 11673600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-208ms_v2", "tier": "Standard", "size": "M416-208ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "11400"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "208"}, {"name": "ParentSize", "value": "Standard_M416ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-208s_v2": {"location": "westus2", "vm_size": "Standard_M416-208s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-208s_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-208s_v2", "tier": "Standard", "size": "M416-208s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "208"}, {"name": "ParentSize", "value": "Standard_M416s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416is_v2": {"location": "westus2", "vm_size": "Standard_M416is_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416is_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416is_v2", "tier": "Standard", "size": "M416is_v2", "family": "standardMIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416ms_v2": {"location": "westus2", "vm_size": "Standard_M416ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416ms_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 11673600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416ms_v2", "tier": "Standard", "size": "M416ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "11400"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416s_10_v2": {"location": "westus2", "vm_size": "Standard_M416s_10_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_10_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 9728000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_10_v2", "tier": "Standard", "size": "M416s_10_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "9500"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "15118284881920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416s_8_v2": {"location": "westus2", "vm_size": "Standard_M416s_8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_8_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 7782400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_8_v2", "tier": "Standard", "size": "M416s_8_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "7600"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "15118284881920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416s_9_v2": {"location": "westus2", "vm_size": "Standard_M416s_9_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_9_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 8775680, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_9_v2", "tier": "Standard", "size": "M416s_9_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8570"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "15118284881920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416s_v2": {"location": "westus2", "vm_size": "Standard_M416s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_v2", "tier": "Standard", "size": "M416s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M48ds_1_v3": {"location": "westus2", "vm_size": "Standard_M48ds_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M48ds_1_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M48ds_1_v3", "tier": "Standard", "size": "M48ds_1_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M48s_1_v3": {"location": "westus2", "vm_size": "Standard_M48s_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M48s_1_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M48s_1_v3", "tier": "Standard", "size": "M48s_1_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64": {"location": "westus2", "vm_size": "Standard_M64", "capability": {"type": "requirement", "name": "westus2_Standard_M64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1024000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64", "tier": "Standard", "size": "M64", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1000"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "1318554959872"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64-16ms": {"location": "westus2", "vm_size": "Standard_M64-16ms", "capability": {"type": "requirement", "name": "westus2_Standard_M64-16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64-16ms", "tier": "Standard", "size": "M64-16ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M64ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64-32ms": {"location": "westus2", "vm_size": "Standard_M64-32ms", "capability": {"type": "requirement", "name": "westus2_Standard_M64-32ms", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64-32ms", "tier": "Standard", "size": "M64-32ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M64ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64dms_v2": {"location": "westus2", "vm_size": "Standard_M64dms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64dms_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1835008, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64dms_v2", "tier": "Standard", "size": "M64dms_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2097152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1792"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64ds_v2": {"location": "westus2", "vm_size": "Standard_M64ds_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64ds_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1048576, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ds_v2", "tier": "Standard", "size": "M64ds_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2097152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1024"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64ls": {"location": "westus2", "vm_size": "Standard_M64ls", "capability": {"type": "requirement", "name": "westus2_Standard_M64ls", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ls", "tier": "Standard", "size": "M64ls", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64m": {"location": "westus2", "vm_size": "Standard_M64m", "capability": {"type": "requirement", "name": "westus2_Standard_M64m", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64m", "tier": "Standard", "size": "M64m", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64ms": {"location": "westus2", "vm_size": "Standard_M64ms", "capability": {"type": "requirement", "name": "westus2_Standard_M64ms", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ms", "tier": "Standard", "size": "M64ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64ms_v2": {"location": "westus2", "vm_size": "Standard_M64ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64ms_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1835008, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ms_v2", "tier": "Standard", "size": "M64ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1792"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64s": {"location": "westus2", "vm_size": "Standard_M64s", "capability": {"type": "requirement", "name": "westus2_Standard_M64s", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1048576, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64s", "tier": "Standard", "size": "M64s", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2097152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1024"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64s_v2": {"location": "westus2", "vm_size": "Standard_M64s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64s_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1048576, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64s_v2", "tier": "Standard", "size": "M64s_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1024"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M8-2ms": {"location": "westus2", "vm_size": "Standard_M8-2ms", "capability": {"type": "requirement", "name": "westus2_Standard_M8-2ms", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 224000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M8-2ms", "tier": "Standard", "size": "M8-2ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "256000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218.75"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "1"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M8ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "851477266432"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M8-4ms": {"location": "westus2", "vm_size": "Standard_M8-4ms", "capability": {"type": "requirement", "name": "westus2_Standard_M8-4ms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 224000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M8-4ms", "tier": "Standard", "size": "M8-4ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "256000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218.75"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "1"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M8ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "851477266432"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M832ixs_v2": {"location": "westus2", "vm_size": "Standard_M832ixs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M832ixs_v2", "is_default": false, "node_count": 1, "core_count": 832, "memory_mb": 22325002, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M832ixs_v2", "tier": "Standard", "size": "M832ixs_v2", "family": "standardMIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1920000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "832"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "21801.76"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "832"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632200000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M8ms": {"location": "westus2", "vm_size": "Standard_M8ms", "capability": {"type": "requirement", "name": "westus2_Standard_M8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 224000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M8ms", "tier": "Standard", "size": "M8ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "256000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218.75"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "1"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "851477266432"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M96ds_1_v3": {"location": "westus2", "vm_size": "Standard_M96ds_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96ds_1_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96ds_1_v3", "tier": "Standard", "size": "M96ds_1_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M96ds_2_v3": {"location": "westus2", "vm_size": "Standard_M96ds_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96ds_2_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96ds_2_v3", "tier": "Standard", "size": "M96ds_2_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M96s_1_v3": {"location": "westus2", "vm_size": "Standard_M96s_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96s_1_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96s_1_v3", "tier": "Standard", "size": "M96s_1_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M96s_2_v3": {"location": "westus2", "vm_size": "Standard_M96s_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96s_2_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96s_2_v3", "tier": "Standard", "size": "M96s_2_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_MDB16s": {"location": "westus2", "vm_size": "Standard_MDB16s", "capability": {"type": "requirement", "name": "westus2_Standard_MDB16s", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_MDB16s", "tier": "Standard", "size": "MDB16s", "family": "standardMDBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "ACUs", "value": "160"}, {"name": "CachedDiskBytes", "value": "3145728000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_MDB32s": {"location": "westus2", "vm_size": "Standard_MDB32s", "capability": {"type": "requirement", "name": "westus2_Standard_MDB32s", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_MDB32s", "tier": "Standard", "size": "MDB32s", "family": "standardMDBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "ACUs", "value": "160"}, {"name": "CachedDiskBytes", "value": "3328180224"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_MSODSG5": {"location": "westus2", "vm_size": "Standard_MSODSG5", "capability": {"type": "requirement", "name": "westus2_Standard_MSODSG5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_MSODSG5", "tier": "Standard", "size": "MSODSG5", "family": "MSODSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3072000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_NC12": {"location": "westus2", "vm_size": "Standard_NC12", "capability": {"type": "requirement", "name": "westus2_Standard_NC12", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12", "tier": "Standard", "size": "NC12", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC12s_v2": {"location": "westus2", "vm_size": "Standard_NC12s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC12s_v2", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12s_v2", "tier": "Standard", "size": "NC12s_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1509376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "687194767360"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC12s_v3": {"location": "westus2", "vm_size": "Standard_NC12s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12s_v3", "tier": "Standard", "size": "NC12s_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "688128"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC12_Promo": {"location": "westus2", "vm_size": "Standard_NC12_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC12_Promo", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12_Promo", "tier": "Standard", "size": "NC12_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC16as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC16as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC16as_T4_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 112640, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC16as_T4_v3", "tier": "Standard", "size": "NC16as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "110"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154619000000"}, {"name": "UncachedDiskIOPS", "value": "24480"}, {"name": "UncachedDiskBytesPerSecond", "value": "368640000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NC24": {"location": "westus2", "vm_size": "Standard_NC24", "capability": {"type": "requirement", "name": "westus2_Standard_NC24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24", "tier": "Standard", "size": "NC24", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24ads_A100_v4": {"location": "westus2", "vm_size": "Standard_NC24ads_A100_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NC24ads_A100_v4", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24ads_A100_v4", "tier": "Standard", "size": "NC24ads_A100_v4", "family": "StandardNCADSA100v4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "274877906944"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915456"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_NC24r": {"location": "westus2", "vm_size": "Standard_NC24r", "capability": {"type": "requirement", "name": "westus2_Standard_NC24r", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24r", "tier": "Standard", "size": "NC24r", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24rs_v2": {"location": "westus2", "vm_size": "Standard_NC24rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC24rs_v2", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24rs_v2", "tier": "Standard", "size": "NC24rs_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24rs_v3": {"location": "westus2", "vm_size": "Standard_NC24rs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC24rs_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24rs_v3", "tier": "Standard", "size": "NC24rs_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24r_Promo": {"location": "westus2", "vm_size": "Standard_NC24r_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC24r_Promo", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24r_Promo", "tier": "Standard", "size": "NC24r_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24s_v2": {"location": "westus2", "vm_size": "Standard_NC24s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC24s_v2", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24s_v2", "tier": "Standard", "size": "NC24s_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24s_v3": {"location": "westus2", "vm_size": "Standard_NC24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24s_v3", "tier": "Standard", "size": "NC24s_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24_Promo": {"location": "westus2", "vm_size": "Standard_NC24_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC24_Promo", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24_Promo", "tier": "Standard", "size": "NC24_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC48ads_A100_v4": {"location": "westus2", "vm_size": "Standard_NC48ads_A100_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NC48ads_A100_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC48ads_A100_v4", "tier": "Standard", "size": "NC48ads_A100_v4", "family": "StandardNCADSA100v4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "549755813888"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "NvmeDiskSizeInMiB", "value": "1830912"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_NC4as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC4as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC4as_T4_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC4as_T4_v3", "tier": "Standard", "size": "NC4as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "180224"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154619000000"}, {"name": "UncachedDiskIOPS", "value": "24480"}, {"name": "UncachedDiskBytesPerSecond", "value": "368640000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_NC6": {"location": "westus2", "vm_size": "Standard_NC6", "capability": {"type": "requirement", "name": "westus2_Standard_NC6", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6", "tier": "Standard", "size": "NC6", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "348160"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "300000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC64as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC64as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC64as_T4_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC64as_T4_v3", "tier": "Standard", "size": "NC64as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2883584"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "48000"}, {"name": "UncachedDiskBytesPerSecond", "value": "737280000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NC6s_v2": {"location": "westus2", "vm_size": "Standard_NC6s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC6s_v2", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6s_v2", "tier": "Standard", "size": "NC6s_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "753664"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "210763776"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "210763776"}, {"name": "CachedDiskBytes", "value": "343597383680"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "300000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC6s_v3": {"location": "westus2", "vm_size": "Standard_NC6s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC6s_v3", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6s_v3", "tier": "Standard", "size": "NC6s_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "344064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC6_Promo": {"location": "westus2", "vm_size": "Standard_NC6_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC6_Promo", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6_Promo", "tier": "Standard", "size": "NC6_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "348160"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "300000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC8as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC8as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC8as_T4_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC8as_T4_v3", "tier": "Standard", "size": "NC8as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154619000000"}, {"name": "UncachedDiskIOPS", "value": "24480"}, {"name": "UncachedDiskBytesPerSecond", "value": "368640000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NC96ads_A100_v4": {"location": "westus2", "vm_size": "Standard_NC96ads_A100_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NC96ads_A100_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 901120, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC96ads_A100_v4", "tier": "Standard", "size": "NC96ads_A100_v4", "family": "StandardNCADSA100v4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "880"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1024000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1024000000"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4096000000"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_ND96asr_v4": {"location": "westus2", "vm_size": "Standard_ND96asr_v4", "capability": {"type": "requirement", "name": "westus2_Standard_ND96asr_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 921600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 8, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_ND96asr_v4", "tier": "Standard", "size": "ND96asr_v4", "family": "Standard NDASv4_A100 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2969600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "900"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "GPUs", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NP48": {"location": "westus2", "vm_size": "Standard_NP48", "capability": {"type": "requirement", "name": "westus2_Standard_NP48", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 675, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NP48", "tier": "Standard", "size": "NP48", "family": "StandardNPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.66"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_NV12": {"location": "westus2", "vm_size": "Standard_NV12", "capability": {"type": "requirement", "name": "westus2_Standard_NV12", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12", "tier": "Standard", "size": "NV12", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "08/31/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV12ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV12ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV12ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 112640, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12ads_A10_v5", "tier": "Standard", "size": "NV12ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "368640"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "110"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_NV12hs_v3": {"location": "westus2", "vm_size": "Standard_NV12hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV12hs_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12hs_v3", "tier": "Standard", "size": "NV12hs_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "344064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24480"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "214958080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "214958080"}, {"name": "CachedDiskBytes", "value": "343597383680"}, {"name": "UncachedDiskIOPS", "value": "20400"}, {"name": "UncachedDiskBytesPerSecond", "value": "307200000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV12s_v3": {"location": "westus2", "vm_size": "Standard_NV12s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12s_v3", "tier": "Standard", "size": "NV12s_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "344064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV12_Promo": {"location": "westus2", "vm_size": "Standard_NV12_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NV12_Promo", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12_Promo", "tier": "Standard", "size": "NV12_Promo", "family": "standardNVPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "9/6/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV16ahs_v4": {"location": "westus2", "vm_size": "Standard_NV16ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV16ahs_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV16ahs_v4", "tier": "Standard", "size": "NV16ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV16as_v4": {"location": "westus2", "vm_size": "Standard_NV16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV16as_v4", "tier": "Standard", "size": "NV16as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV18ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV18ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV18ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 18, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 6, "max_inclusive": true}, "max_nic_count": 6}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV18ads_A10_v5", "tier": "Standard", "size": "NV18ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "737280"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "18"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "18"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "6"}], "restrictions": []}}, "Standard_NV24": {"location": "westus2", "vm_size": "Standard_NV24", "capability": {"type": "requirement", "name": "westus2_Standard_NV24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24", "tier": "Standard", "size": "NV24", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "08/31/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV24ms_v3": {"location": "westus2", "vm_size": "Standard_NV24ms_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV24ms_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24ms_v3", "tier": "Standard", "size": "NV24ms_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2172928"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV24s_v3": {"location": "westus2", "vm_size": "Standard_NV24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24s_v3", "tier": "Standard", "size": "NV24s_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "688128"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV24_Promo": {"location": "westus2", "vm_size": "Standard_NV24_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NV24_Promo", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24_Promo", "tier": "Standard", "size": "NV24_Promo", "family": "standardNVPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "9/6/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV32ahs_v4": {"location": "westus2", "vm_size": "Standard_NV32ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV32ahs_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV32ahs_v4", "tier": "Standard", "size": "NV32ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "720896"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "326417514496"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV32as_v4": {"location": "westus2", "vm_size": "Standard_NV32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV32as_v4", "tier": "Standard", "size": "NV32as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "720896"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "326417514496"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV32ms_v3": {"location": "westus2", "vm_size": "Standard_NV32ms_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV32ms_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV32ms_v3", "tier": "Standard", "size": "NV32ms_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV36adms_A10_v5": {"location": "westus2", "vm_size": "Standard_NV36adms_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV36adms_A10_v5", "is_default": false, "node_count": 1, "core_count": 36, "memory_mb": 901120, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV36adms_A10_v5", "tier": "Standard", "size": "NV36adms_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2949120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "36"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "880"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "36"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NV36ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV36ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV36ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 36, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV36ads_A10_v5", "tier": "Standard", "size": "NV36ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "36"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "36"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NV48s_v3": {"location": "westus2", "vm_size": "Standard_NV48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV48s_v3", "tier": "Standard", "size": "NV48s_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV4ahs_v4": {"location": "westus2", "vm_size": "Standard_NV4ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV4ahs_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV4ahs_v4", "tier": "Standard", "size": "NV4ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "90112"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV4as_v4": {"location": "westus2", "vm_size": "Standard_NV4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV4as_v4", "tier": "Standard", "size": "NV4as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "90112"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV6": {"location": "westus2", "vm_size": "Standard_NV6", "capability": {"type": "requirement", "name": "westus2_Standard_NV6", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6", "tier": "Standard", "size": "NV6", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "08/31/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV6ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV6ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV6ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 56320, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6ads_A10_v5", "tier": "Standard", "size": "NV6ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "184320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "55"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_NV6h": {"location": "westus2", "vm_size": "Standard_NV6h", "capability": {"type": "requirement", "name": "westus2_Standard_NV6h", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6h", "tier": "Standard", "size": "NV6h", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV6_Promo": {"location": "westus2", "vm_size": "Standard_NV6_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NV6_Promo", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6_Promo", "tier": "Standard", "size": "NV6_Promo", "family": "standardNVPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "9/6/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV72ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV72ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV72ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 72, "memory_mb": 901120, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV72ads_A10_v5", "tier": "Standard", "size": "NV72ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2949120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "72"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "880"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "72"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "180000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NV8ahs_v4": {"location": "westus2", "vm_size": "Standard_NV8ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV8ahs_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV8ahs_v4", "tier": "Standard", "size": "NV8ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "180224"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV8as_v4": {"location": "westus2", "vm_size": "Standard_NV8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV8as_v4", "tier": "Standard", "size": "NV8as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "180224"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}}} \ No newline at end of file diff --git a/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py b/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py index 61380a46f7..65c512b22f 100644 --- a/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py +++ b/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py @@ -60,3 +60,43 @@ def test_its_source_channel_should_be_wire_server(self): extensions_goal_state = protocol.get_goal_state().extensions_goal_state self.assertEqual(GoalStateChannel.WireServer, extensions_goal_state.channel, "The channel is incorrect") + + def test_it_should_parse_is_version_from_rsm_properly(self): + with mock_wire_protocol(wire_protocol_data.DATA_FILE) as protocol: + agent_families = protocol.get_goal_state().extensions_goal_state.agent_families + for family in agent_families: + self.assertIsNone(family.is_version_from_rsm, "is_version_from_rsm should be None") + + data_file = wire_protocol_data.DATA_FILE.copy() + data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version.xml" + with mock_wire_protocol(data_file) as protocol: + agent_families = protocol.get_goal_state().extensions_goal_state.agent_families + for family in agent_families: + self.assertTrue(family.is_version_from_rsm, "is_version_from_rsm should be True") + + data_file = wire_protocol_data.DATA_FILE.copy() + data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version_properties_false.xml" + with mock_wire_protocol(data_file) as protocol: + agent_families = protocol.get_goal_state().extensions_goal_state.agent_families + for family in agent_families: + self.assertFalse(family.is_version_from_rsm, "is_version_from_rsm should be False") + + def test_it_should_parse_is_vm_enabled_for_rsm_upgrades(self): + with mock_wire_protocol(wire_protocol_data.DATA_FILE) as protocol: + agent_families = protocol.get_goal_state().extensions_goal_state.agent_families + for family in agent_families: + self.assertIsNone(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be None") + + data_file = wire_protocol_data.DATA_FILE.copy() + data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version.xml" + with mock_wire_protocol(data_file) as protocol: + agent_families = protocol.get_goal_state().extensions_goal_state.agent_families + for family in agent_families: + self.assertTrue(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be True") + + data_file = wire_protocol_data.DATA_FILE.copy() + data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version_properties_false.xml" + with mock_wire_protocol(data_file) as protocol: + agent_families = protocol.get_goal_state().extensions_goal_state.agent_families + for family in agent_families: + self.assertFalse(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be False") diff --git a/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py b/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py index bea1063f70..a067c64110 100644 --- a/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py +++ b/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py @@ -53,7 +53,7 @@ def test_it_should_parse_requested_version_properly(self): goal_state = GoalState(protocol.client) families = goal_state.extensions_goal_state.agent_families for family in families: - self.assertEqual(family.requested_version_string, "0.0.0.0", "Version should be None") + self.assertIsNone(family.requested_version, "Version should be None") data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version.json" @@ -62,7 +62,57 @@ def test_it_should_parse_requested_version_properly(self): goal_state = GoalState(protocol.client) families = goal_state.extensions_goal_state.agent_families for family in families: - self.assertEqual(family.requested_version_string, "9.9.9.9", "Version should be 9.9.9.9") + self.assertEqual(family.requested_version, "9.9.9.9", "Version should be 9.9.9.9") + + def test_it_should_parse_is_version_from_rsm_properly(self): + with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol: + goal_state = GoalState(protocol.client) + families = goal_state.extensions_goal_state.agent_families + for family in families: + self.assertIsNone(family.is_version_from_rsm, "is_version_from_rsm should be None") + + data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() + data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version.json" + with mock_wire_protocol(data_file) as protocol: + protocol.mock_wire_data.set_etag(888) + goal_state = GoalState(protocol.client) + families = goal_state.extensions_goal_state.agent_families + for family in families: + self.assertTrue(family.is_version_from_rsm, "is_version_from_rsm should be True") + + data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() + data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version_properties_false.json" + with mock_wire_protocol(data_file) as protocol: + protocol.mock_wire_data.set_etag(888) + goal_state = GoalState(protocol.client) + families = goal_state.extensions_goal_state.agent_families + for family in families: + self.assertFalse(family.is_version_from_rsm, "is_version_from_rsm should be False") + + def test_it_should_parse_is_vm_enabled_for_rsm_upgrades_properly(self): + with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol: + goal_state = GoalState(protocol.client) + families = goal_state.extensions_goal_state.agent_families + for family in families: + self.assertIsNone(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be None") + + data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() + data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version.json" + with mock_wire_protocol(data_file) as protocol: + protocol.mock_wire_data.set_etag(888) + goal_state = GoalState(protocol.client) + families = goal_state.extensions_goal_state.agent_families + for family in families: + self.assertTrue(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be True") + + data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() + data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version_properties_false.json" + with mock_wire_protocol(data_file) as protocol: + protocol.mock_wire_data.set_etag(888) + goal_state = GoalState(protocol.client) + families = goal_state.extensions_goal_state.agent_families + for family in families: + self.assertFalse(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be False") def test_it_should_parse_missing_status_upload_blob_as_none(self): data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() diff --git a/tests/data/hostgaplugin/ext_conf-requested_version.xml b/tests/data/hostgaplugin/ext_conf-requested_version.xml index 48cc95cc9f..5c9e0028fe 100644 --- a/tests/data/hostgaplugin/ext_conf-requested_version.xml +++ b/tests/data/hostgaplugin/ext_conf-requested_version.xml @@ -4,6 +4,8 @@ Prod 9.9.9.10 + true + true https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml @@ -12,6 +14,8 @@ Test 9.9.9.10 + true + true https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml diff --git a/tests/data/hostgaplugin/ext_conf-requested_version_properties_false.xml b/tests/data/hostgaplugin/ext_conf-requested_version_properties_false.xml new file mode 100644 index 0000000000..e1f1d6ba8c --- /dev/null +++ b/tests/data/hostgaplugin/ext_conf-requested_version_properties_false.xml @@ -0,0 +1,152 @@ + + + + + Prod + 9.9.9.10 + false + false + + https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml + https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml + + + + Test + 9.9.9.10 + false + false + + https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml + https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml + + + + CentralUSEUAP + CRP + + + + MultipleExtensionsPerHandler + + +https://dcrcl3a0xs.blob.core.windows.net/$system/edp0plkw2b.86f4ae0a-61f8-48ae-9199-40f402d56864.status?sv=2018-03-28&sr=b&sk=system-1&sig=KNWgC2%3d&se=9999-01-01T00%3a00%3a00Z&sp=w + + + + https://zrdfepirv2cbn09pr02a.blob.core.windows.net/a47f0806d764480a8d989d009c75007d/Microsoft.Azure.Monitor_AzureMonitorLinuxAgent_useast2euap_manifest.xml + + + + + https://zrdfepirv2cbn06prdstr01a.blob.core.windows.net/4ef06ad957494df49c807a5334f2b5d2/Microsoft.Azure.Security.Monitoring_AzureSecurityLinuxAgent_useast2euap_manifest.xml + + + + + https://umsanh4b5rfz0q0p4pwm.blob.core.windows.net/5237dd14-0aad-f051-0fad-1e33e1b63091/5237dd14-0aad-f051-0fad-1e33e1b63091_manifest.xml + + + + + https://umsawqtlsshtn5v2nfgh.blob.core.windows.net/f4086d41-69f9-3103-78e0-8a2c7e789d0f/f4086d41-69f9-3103-78e0-8a2c7e789d0f_manifest.xml + + + + + https://umsah3cwjlctnmhsvzqv.blob.core.windows.net/2bbece4f-0283-d415-b034-cc0adc6997a1/2bbece4f-0283-d415-b034-cc0adc6997a1_manifest.xml + + + + + + { + "runtimeSettings": [ + { + "handlerSettings": { + "protectedSettingsCertThumbprint": "BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F", + "protectedSettings": "MIIBsAYJKoZIhvcNAQcDoIIBoTCCAZ0CAQAxggFpMIIBZQIBADBNMDkxNzA1BgoJkiaJk/IsZAEZFidXaW5kb3dzIEF6dXJlIENSUCBDZXJ0aWZpY2F0ZSBHZW5lcmF0b3ICEFpB/HKM/7evRk+DBz754wUwDQYJKoZIhvcNAQEBBQAEggEADPJwniDeIUXzxNrZCloitFdscQ59Bz1dj9DLBREAiM8jmxM0LLicTJDUv272Qm/4ZQgdqpFYBFjGab/9MX+Ih2x47FkVY1woBkckMaC/QOFv84gbboeQCmJYZC/rZJdh8rCMS+CEPq3uH1PVrvtSdZ9uxnaJ+E4exTPPviIiLIPtqWafNlzdbBt8HZjYaVw+SSe+CGzD2pAQeNttq3Rt/6NjCzrjG8ufKwvRoqnrInMs4x6nnN5/xvobKIBSv4/726usfk8Ug+9Q6Benvfpmre2+1M5PnGTfq78cO3o6mI3cPoBUjp5M0iJjAMGeMt81tyHkimZrEZm6pLa4NQMOEjArBgkqhkiG9w0BBwEwFAYIKoZIhvcNAwcECC5nVaiJaWt+gAhgeYvxUOYHXw==", + "publicSettings": {"GCS_AUTO_CONFIG":true} + } + } + ] +} + + + { + "runtimeSettings": [ + { + "handlerSettings": { + "protectedSettingsCertThumbprint": "BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F", + "protectedSettings": "MIIBsAYJKoZIhvcNAQcDoIIBoTCCAZ0CAQAxggFpMIIBZQIBADBNMDkxNzA1BgoJkiaJk/IsZAEZFidXaW5kb3dzIEF6dXJlIENSUCBDZXJ0aWZpY2F0ZSBHZW5lcmF0b3ICEFpB/HKM/7evRk+DBz754wUwDQYJKoZIhvcNAQEBBQAEggEADPJwniDeIUXzxNrZCloitFdscQ59Bz1dj9DLBREAiM8jmxM0LLicTJDUv272Qm/4ZQgdqpFYBFjGab/9MX+Ih2x47FkVY1woBkckMaC/QOFv84gbboeQCmJYZC/rZJdh8rCMS+CEPq3uH1PVrvtSdZ9uxnaJ+E4exTPPviIiLIPtqWafNlzdbBt8HZjYaVw+SSe+CGzD2pAQeNttq3Rt/6NjCzrjG8ufKwvRoqnrInMs4x6nnN5/xvobKIBSv4/726usfk8Ug+9Q6Benvfpmre2+1M5PnGTfq78cO3o6mI3cPoBUjp5M0iJjAMGeMt81tyHkimZrEZm6pLa4NQMOEjArBgkqhkiG9w0BBwEwFAYIKoZIhvcNAwcECC5nVaiJaWt+gAhgeYvxUOYHXw==", + "publicSettings": {"enableGenevaUpload":true} + } + } + ] +} + + + + + + { + "runtimeSettings": [ + { + "handlerSettings": { + "publicSettings": {"commandToExecute":"echo 'cee174d4-4daa-4b07-9958-53b9649445c2'"} + } + } + ] +} + + + + + + + + + + { + "runtimeSettings": [ + { + "handlerSettings": { + "publicSettings": {"source":{"script":"echo '4abb1e88-f349-41f8-8442-247d9fdfcac5'"}} + } + } + ] +} + { + "runtimeSettings": [ + { + "handlerSettings": { + "publicSettings": {"source":{"script":"echo 'e865c9bc-a7b3-42c6-9a79-cfa98a1ee8b3'"}} + } + } + ] +} + { + "runtimeSettings": [ + { + "handlerSettings": { + "publicSettings": {"source":{"script":"echo 'f923e416-0340-485c-9243-8b84fb9930c6'"}} + } + } + ] +} + + + { + "runtimeSettings": [ + { + "handlerSettings": { + "protectedSettingsCertThumbprint": "59A10F50FFE2A0408D3F03FE336C8FD5716CF25C", + "protectedSettings": "*** REDACTED ***" + } + } + ] +} + + +https://dcrcl3a0xs.blob.core.windows.net/$system/edp0plkw2b.86f4ae0a-61f8-48ae-9199-40f402d56864.vmSettings?sv=2018-03-28&sr=b&sk=system-1&sig=PaiLic%3d&se=9999-01-01T00%3a00%3a00Z&sp=r + diff --git a/tests/data/hostgaplugin/vm_settings-requested_version.json b/tests/data/hostgaplugin/vm_settings-requested_version.json index 0f73cb255e..734cc8147b 100644 --- a/tests/data/hostgaplugin/vm_settings-requested_version.json +++ b/tests/data/hostgaplugin/vm_settings-requested_version.json @@ -29,6 +29,8 @@ { "name": "Prod", "version": "9.9.9.9", + "isVersionFromRSM": true, + "isVMEnabledForRSMUpgrades": true, "uris": [ "https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml", "https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml" @@ -37,6 +39,8 @@ { "name": "Test", "version": "9.9.9.9", + "isVersionFromRSM": true, + "isVMEnabledForRSMUpgrades": true, "uris": [ "https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml", "https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml" diff --git a/tests/data/hostgaplugin/vm_settings-requested_version_properties_false.json b/tests/data/hostgaplugin/vm_settings-requested_version_properties_false.json new file mode 100644 index 0000000000..3a6eb8b1a5 --- /dev/null +++ b/tests/data/hostgaplugin/vm_settings-requested_version_properties_false.json @@ -0,0 +1,145 @@ +{ + "hostGAPluginVersion": "1.0.8.133", + "vmSettingsSchemaVersion": "0.0", + "activityId": "a33f6f53-43d6-4625-b322-1a39651a00c9", + "correlationId": "9a47a2a2-e740-4bfc-b11b-4f2f7cfe7d2e", + "inSvdSeqNo": 1, + "extensionsLastModifiedTickCount": 637726699999999999, + "extensionGoalStatesSource": "FastTrack", + "onHold": true, + "statusUploadBlob": { + "statusBlobType": "BlockBlob", + "value": "https://dcrcl3a0xs.blob.core.windows.net/$system/edp0plkw2b.86f4ae0a-61f8-48ae-9199-40f402d56864.status?sv=2018-03-28&sr=b&sk=system-1&sig=KNWgC2%3d&se=9999-01-01T00%3a00%3a00Z&sp=w" + }, + "inVMMetadata": { + "subscriptionId": "8e037ad4-618f-4466-8bc8-5099d41ac15b", + "resourceGroupName": "rg-dc-86fjzhp", + "vmName": "edp0plkw2b", + "location": "CentralUSEUAP", + "vmId": "86f4ae0a-61f8-48ae-9199-40f402d56864", + "vmSize": "Standard_B2s", + "osType": "Linux" + }, + "requiredFeatures": [ + { + "name": "MultipleExtensionsPerHandler" + } + ], + "gaFamilies": [ + { + "name": "Prod", + "version": "9.9.9.9", + "isVersionFromRSM": false, + "isVMEnabledForRSMUpgrades": false, + "uris": [ + "https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml", + "https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Prod_uscentraleuap_manifest.xml" + ] + }, + { + "name": "Test", + "version": "9.9.9.9", + "isVersionFromRSM": false, + "isVMEnabledForRSMUpgrades": false, + "uris": [ + "https://zrdfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml", + "https://ardfepirv2cdm03prdstr01a.blob.core.windows.net/7d89d439b79f4452950452399add2c90/Microsoft.OSTCLinuxAgent_Test_uscentraleuap_manifest.xml" + ] + } + ], + "extensionGoalStates": [ + { + "name": "Microsoft.Azure.Monitor.AzureMonitorLinuxAgent", + "version": "1.9.1", + "location": "https://zrdfepirv2cbn04prdstr01a.blob.core.windows.net/a47f0806d764480a8d989d009c75007d/Microsoft.Azure.Monitor_AzureMonitorLinuxAgent_useast2euap_manifest.xml", + "state": "enabled", + "autoUpgrade": true, + "runAsStartupTask": false, + "isJson": true, + "useExactVersion": true, + "settingsSeqNo": 0, + "settings": [ + { + "protectedSettingsCertThumbprint": "BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F", + "protectedSettings": "MIIBsAYJKoZIhvcNAQcDoIIBoTCCAZ0CAQAxggFpMIIBZQIBADBNMDkxNzA1BgoJkiaJk/IsZAEZFidXaW5kb3dzIEF6dXJlIENSUCBDZXJ0aWZpY2F0ZSBHZW5lcmF0b3ICEFpB/HKM/7evRk+DBz754wUwDQYJKoZIhvcNAQEBBQAEggEADPJwniDeIUXzxNrZCloitFdscQ59Bz1dj9DLBREAiM8jmxM0LLicTJDUv272Qm/4ZQgdqpFYBFjGab/9MX+Ih2x47FkVY1woBkckMaC/QOFv84gbboeQCmJYZC/rZJdh8rCMS+CEPq3uH1PVrvtSdZ9uxnaJ+E4exTPPviIiLIPtqWafNlzdbBt8HZjYaVw+SSe+CGzD2pAQeNttq3Rt/6NjCzrjG8ufKwvRoqnrInMs4x6nnN5/xvobKIBSv4/726usfk8Ug+9Q6Benvfpmre2+1M5PnGTfq78cO3o6mI3cPoBUjp5M0iJjAMGeMt81tyHkimZrEZm6pLa4NQMOEjArBgkqhkiG9w0BBwEwFAYIKoZIhvcNAwcECC5nVaiJaWt+gAhgeYvxUOYHXw==", + "publicSettings": "{\"GCS_AUTO_CONFIG\":true}" + } + ] + }, + { + "name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "version": "2.15.112", + "location": "https://zrdfepirv2cbn04prdstr01a.blob.core.windows.net/4ef06ad957494df49c807a5334f2b5d2/Microsoft.Azure.Security.Monitoring_AzureSecurityLinuxAgent_useast2euap_manifest.xml", + "state": "enabled", + "autoUpgrade": true, + "runAsStartupTask": false, + "isJson": true, + "useExactVersion": true, + "settingsSeqNo": 0, + "settings": [ + { + "protectedSettingsCertThumbprint": "BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F", + "protectedSettings": "MIIBsAYJKoZIhvcNAQcDoIIBoTCCAZ0CAQAxggFpMIIBZQIBADBNMDkxNzA1BgoJkiaJk/IsZAEZFidXaW5kb3dzIEF6dXJlIENSUCBDZXJ0aWZpY2F0ZSBHZW5lcmF0b3ICEFpB/HKM/7evRk+DBz754wUwDQYJKoZIhvcNAQEBBQAEggEADPJwniDeIUXzxNrZCloitFdscQ59Bz1dj9DLBREAiM8jmxM0LLicTJDUv272Qm/4ZQgdqpFYBFjGab/9MX+Ih2x47FkVY1woBkckMaC/QOFv84gbboeQCmJYZC/rZJdh8rCMS+CEPq3uH1PVrvtSdZ9uxnaJ+E4exTPPviIiLIPtqWafNlzdbBt8HZjYaVw+SSe+CGzD2pAQeNttq3Rt/6NjCzrjG8ufKwvRoqnrInMs4x6nnN5/xvobKIBSv4/726usfk8Ug+9Q6Benvfpmre2+1M5PnGTfq78cO3o6mI3cPoBUjp5M0iJjAMGeMt81tyHkimZrEZm6pLa4NQMOEjArBgkqhkiG9w0BBwEwFAYIKoZIhvcNAwcECC5nVaiJaWt+gAhgeYvxUOYHXw==", + "publicSettings": "{\"enableGenevaUpload\":true}" + } + ] + }, + { + "name": "Microsoft.Azure.Extensions.CustomScript", + "version": "2.1.6", + "location": "https://umsavwggj2v40kvqhc0w.blob.core.windows.net/5237dd14-0aad-f051-0fad-1e33e1b63091/5237dd14-0aad-f051-0fad-1e33e1b63091_manifest.xml", + "failoverlocation": "https://umsafwzhkbm1rfrhl0ws.blob.core.windows.net/5237dd14-0aad-f051-0fad-1e33e1b63091/5237dd14-0aad-f051-0fad-1e33e1b63091_manifest.xml", + "additionalLocations": [ + "https://umsanh4b5rfz0q0p4pwm.blob.core.windows.net/5237dd14-0aad-f051-0fad-1e33e1b63091/5237dd14-0aad-f051-0fad-1e33e1b63091_manifest.xml" + ], + "state": "enabled", + "autoUpgrade": true, + "runAsStartupTask": false, + "isJson": true, + "useExactVersion": true, + "settingsSeqNo": 0, + "isMultiConfig": false, + "settings": [ + { + "publicSettings": "{\"commandToExecute\":\"echo 'cee174d4-4daa-4b07-9958-53b9649445c2'\"}" + } + ] + }, + { + "name": "Microsoft.CPlat.Core.RunCommandHandlerLinux", + "version": "1.2.0", + "location": "https://umsavbvncrpzbnxmxzmr.blob.core.windows.net/f4086d41-69f9-3103-78e0-8a2c7e789d0f/f4086d41-69f9-3103-78e0-8a2c7e789d0f_manifest.xml", + "failoverlocation": "https://umsajbjtqrb3zqjvgb2z.blob.core.windows.net/f4086d41-69f9-3103-78e0-8a2c7e789d0f/f4086d41-69f9-3103-78e0-8a2c7e789d0f_manifest.xml", + "additionalLocations": [ + "https://umsawqtlsshtn5v2nfgh.blob.core.windows.net/f4086d41-69f9-3103-78e0-8a2c7e789d0f/f4086d41-69f9-3103-78e0-8a2c7e789d0f_manifest.xml" + ], + "state": "enabled", + "autoUpgrade": true, + "runAsStartupTask": false, + "isJson": true, + "useExactVersion": true, + "settingsSeqNo": 0, + "isMultiConfig": true, + "settings": [ + { + "publicSettings": "{\"source\":{\"script\":\"echo '4abb1e88-f349-41f8-8442-247d9fdfcac5'\"}}", + "seqNo": 0, + "extensionName": "MCExt1", + "extensionState": "enabled" + }, + { + "publicSettings": "{\"source\":{\"script\":\"echo 'e865c9bc-a7b3-42c6-9a79-cfa98a1ee8b3'\"}}", + "seqNo": 0, + "extensionName": "MCExt2", + "extensionState": "enabled" + }, + { + "publicSettings": "{\"source\":{\"script\":\"echo 'f923e416-0340-485c-9243-8b84fb9930c6'\"}}", + "seqNo": 0, + "extensionName": "MCExt3", + "extensionState": "enabled" + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/data/wire/ext_conf_requested_version.xml b/tests/data/wire/ext_conf_requested_version.xml index d12352c297..806063541a 100644 --- a/tests/data/wire/ext_conf_requested_version.xml +++ b/tests/data/wire/ext_conf_requested_version.xml @@ -3,6 +3,8 @@ Prod 9.9.9.10 + True + True http://mock-goal-state/manifest_of_ga.xml @@ -10,6 +12,8 @@ Test 9.9.9.10 + True + True http://mock-goal-state/manifest_of_ga.xml diff --git a/tests/data/wire/ext_conf_requested_version_missing_in_agent_family.xml b/tests/data/wire/ext_conf_requested_version_missing_in_agent_family.xml new file mode 100644 index 0000000000..3f81ed1195 --- /dev/null +++ b/tests/data/wire/ext_conf_requested_version_missing_in_agent_family.xml @@ -0,0 +1,31 @@ + + + + Prod + True + True + + http://mock-goal-state/manifest_of_ga.xml + + + + Test + True + True + + http://mock-goal-state/manifest_of_ga.xml + + + + + + + + + + {"runtimeSettings":[{"handlerSettings":{"protectedSettingsCertThumbprint":"BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F","protectedSettings":"MIICWgYJK","publicSettings":{"foo":"bar"}}}]} + + + +https://test.blob.core.windows.net/vhds/test-cs12.test-cs12.test-cs12.status?sr=b&sp=rw&se=9999-01-01&sk=key1&sv=2014-02-14&sig=hfRh7gzUE7sUtYwke78IOlZOrTRCYvkec4hGZ9zZzXo + diff --git a/tests/data/wire/ext_conf_requested_version_missing_in_manifest.xml b/tests/data/wire/ext_conf_requested_version_missing_in_manifest.xml index 84043e2d75..c750d5d3a2 100644 --- a/tests/data/wire/ext_conf_requested_version_missing_in_manifest.xml +++ b/tests/data/wire/ext_conf_requested_version_missing_in_manifest.xml @@ -4,6 +4,8 @@ Prod 5.2.1.0 + True + True http://mock-goal-state/manifest_of_ga.xml @@ -11,6 +13,8 @@ Test 5.2.1.0 + True + True http://mock-goal-state/manifest_of_ga.xml diff --git a/tests/data/wire/ext_conf_requested_version_not_from_rsm.xml b/tests/data/wire/ext_conf_requested_version_not_from_rsm.xml new file mode 100644 index 0000000000..9da8f5da72 --- /dev/null +++ b/tests/data/wire/ext_conf_requested_version_not_from_rsm.xml @@ -0,0 +1,33 @@ + + + + Prod + 9.9.9.10 + False + True + + http://mock-goal-state/manifest_of_ga.xml + + + + Test + 9.9.9.10 + False + True + + http://mock-goal-state/manifest_of_ga.xml + + + + + + + + + + {"runtimeSettings":[{"handlerSettings":{"protectedSettingsCertThumbprint":"BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F","protectedSettings":"MIICWgYJK","publicSettings":{"foo":"bar"}}}]} + + + +https://test.blob.core.windows.net/vhds/test-cs12.test-cs12.test-cs12.status?sr=b&sp=rw&se=9999-01-01&sk=key1&sv=2014-02-14&sig=hfRh7gzUE7sUtYwke78IOlZOrTRCYvkec4hGZ9zZzXo + diff --git a/tests/data/wire/ext_conf_vm_not_enabled_for_rsm_upgrades.xml b/tests/data/wire/ext_conf_vm_not_enabled_for_rsm_upgrades.xml new file mode 100644 index 0000000000..384723f461 --- /dev/null +++ b/tests/data/wire/ext_conf_vm_not_enabled_for_rsm_upgrades.xml @@ -0,0 +1,33 @@ + + + + Prod + 9.9.9.10 + False + False + + http://mock-goal-state/manifest_of_ga.xml + + + + Test + 9.9.9.10 + False + False + + http://mock-goal-state/manifest_of_ga.xml + + + + + + + + + + {"runtimeSettings":[{"handlerSettings":{"protectedSettingsCertThumbprint":"BD447EF71C3ADDF7C837E84D630F3FAC22CCD22F","protectedSettings":"MIICWgYJK","publicSettings":{"foo":"bar"}}}]} + + + +https://test.blob.core.windows.net/vhds/test-cs12.test-cs12.test-cs12.status?sr=b&sp=rw&se=9999-01-01&sk=key1&sv=2014-02-14&sig=hfRh7gzUE7sUtYwke78IOlZOrTRCYvkec4hGZ9zZzXo + diff --git a/tests/ga/test_agent_update_handler.py b/tests/ga/test_agent_update_handler.py index d91cbb8019..98af150042 100644 --- a/tests/ga/test_agent_update_handler.py +++ b/tests/ga/test_agent_update_handler.py @@ -11,7 +11,6 @@ from azurelinuxagent.common.protocol.util import ProtocolUtil from azurelinuxagent.common.version import CURRENT_VERSION from azurelinuxagent.ga.agent_update_handler import get_agent_update_handler -from azurelinuxagent.ga.guestagent import GAUpdateReportState from tests.ga.test_update import UpdateTestCase from tests.lib.http_request_predicates import HttpRequestPredicates from tests.lib.mock_wire_protocol import mock_wire_protocol, MockHttpResponse @@ -28,7 +27,7 @@ def setUp(self): clear_singleton_instances(ProtocolUtil) @contextlib.contextmanager - def __get_agent_update_handler(self, test_data=None, autoupdate_frequency=0.001, autoupdate_enabled=True, protocol_get_error=False): + def _get_agent_update_handler(self, test_data=None, autoupdate_frequency=0.001, autoupdate_enabled=True, protocol_get_error=False): # Default to DATA_FILE of test_data parameter raises the pylint warning # W0102: Dangerous default value DATA_FILE (builtins.dict) as argument (dangerous-default-value) test_data = DATA_FILE if test_data is None else test_data @@ -63,39 +62,49 @@ def put_handler(url, *args, **_): agent_update_handler._protocol = protocol yield agent_update_handler, mock_telemetry - - def __assert_agent_directories_available(self, versions): + def _assert_agent_directories_available(self, versions): for version in versions: self.assertTrue(os.path.exists(self.agent_dir(version)), "Agent directory {0} not found".format(version)) - def __assert_agent_directories_exist_and_others_dont_exist(self, versions): - self.__assert_agent_directories_available(versions=versions) + def _assert_agent_directories_exist_and_others_dont_exist(self, versions): + self._assert_agent_directories_available(versions=versions) other_agents = [agent_dir for agent_dir in self.agent_dirs() if agent_dir not in [self.agent_dir(version) for version in versions]] self.assertFalse(any(other_agents), "All other agents should be purged from agent dir: {0}".format(other_agents)) - def __assert_agent_requested_version_in_goal_state(self, mock_telemetry, inc=1, version="9.9.9.10"): + def _assert_agent_requested_version_in_goal_state(self, mock_telemetry, inc=1, version="9.9.9.10"): upgrade_event_msgs = [kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if - 'discovered new agent version:{0} in agent manifest for goal state incarnation_{1}'.format(version, inc) in kwarg['message'] and kwarg[ + 'Goal state incarnation_{0} is requesting a new agent version {1}'.format(inc, version) in kwarg['message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade] self.assertEqual(1, len(upgrade_event_msgs), "Did not find the event indicating that the agent requested version found. Got: {0}".format( mock_telemetry.call_args_list)) - def __assert_no_agent_package_telemetry_emitted(self, mock_telemetry, version="9.9.9.10"): + def _assert_update_discovered_from_agent_manifest(self, mock_telemetry, inc=1, version="9.9.9.10"): + upgrade_event_msgs = [kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if + 'Self-update discovered new agent version:{0} in agent manifest for goal state incarnation_{1}'.format(version, inc) in kwarg['message'] and kwarg[ + 'op'] == WALAEventOperation.AgentUpgrade] + self.assertEqual(1, len(upgrade_event_msgs), + "Did not find the event indicating that the new version found. Got: {0}".format( + mock_telemetry.call_args_list)) + + def _assert_no_agent_package_telemetry_emitted(self, mock_telemetry, version="9.9.9.10"): upgrade_event_msgs = [kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if - 'No matching package found in the agent manifest for requested version: {0}'.format(version) in kwarg['message'] and kwarg[ + 'No matching package found in the agent manifest for version: {0}'.format(version) in kwarg['message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade] self.assertEqual(1, len(upgrade_event_msgs), "Did not find the event indicating that the agent package not found. Got: {0}".format( mock_telemetry.call_args_list)) + def _assert_agent_exit_process_telemetry_emitted(self, message): + self.assertIn("Agent completed all update checks, exiting current process", message) + def test_it_should_not_update_when_autoupdate_disabled(self): self.prepare_agents(count=1) - with self.__get_agent_update_handler(autoupdate_enabled=False) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(autoupdate_enabled=False) as (agent_update_handler, mock_telemetry): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) + self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) self.assertEqual(0, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "requesting a new agent version" in kwarg['message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade]), "should not check for requested version") @@ -105,20 +114,20 @@ def test_it_should_update_to_largest_version_if_ga_versioning_disabled(self): data_file = DATA_FILE.copy() data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with patch.object(conf, "get_enable_ga_versioning", return_value=False): with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version="99999.0.0.0") - self.__assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) - self.assertIn("Agent update found, exiting current process", ustr(context.exception.reason)) + self._assert_update_discovered_from_agent_manifest(mock_telemetry, version="99999.0.0.0") + self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) + self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) def test_it_should_update_to_largest_version_if_time_window_not_elapsed(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_uris.xml" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") @@ -135,8 +144,8 @@ def test_it_should_update_to_largest_version_if_time_window_elapsed(self): data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_uris.xml" with patch("azurelinuxagent.common.conf.get_hotfix_upgrade_frequency", return_value=0.001): - with patch("azurelinuxagent.common.conf.get_normal_upgrade_frequency", return_value=0.001): - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with patch("azurelinuxagent.common.conf.get_regular_upgrade_frequency", return_value=0.001): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), @@ -145,53 +154,53 @@ def test_it_should_update_to_largest_version_if_time_window_elapsed(self): agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version="99999.0.0.0") - self.__assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) - self.assertIn("Agent update found, exiting current process", ustr(context.exception.reason)) + self._assert_update_discovered_from_agent_manifest(mock_telemetry, inc=2, version="99999.0.0.0") + self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) + self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) def test_it_should_not_allow_update_if_largest_version_below_current_version(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_upgrade.xml" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) + self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) def test_it_should_not_agent_update_if_last_attempted_update_time_not_elapsed(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" version = "5.2.0.1" - with self.__get_agent_update_handler(test_data=data_file, autoupdate_frequency=10) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10) as (agent_update_handler, mock_telemetry): agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) - self.__assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) + self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) # Now we shouldn't check for download if update not allowed.This run should not add new logs agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) - self.__assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) + self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) def test_it_should_update_to_largest_version_if_requested_version_not_available(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version="99999.0.0.0") - self.__assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) - self.assertIn("Agent update found, exiting current process", ustr(context.exception.reason)) + self._assert_update_discovered_from_agent_manifest(mock_telemetry, version="99999.0.0.0") + self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) + self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) def test_it_should_not_download_manifest_again_if_last_attempted_download_time_not_elapsed(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self.__get_agent_update_handler(test_data=data_file, autoupdate_frequency=10, protocol_get_error=True) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10, protocol_get_error=True) as (agent_update_handler, _): # making multiple agent update attempts agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -205,7 +214,7 @@ def test_it_should_download_manifest_if_last_attempted_download_time_is_elapsed( data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self.__get_agent_update_handler(test_data=data_file, autoupdate_frequency=0.00001, protocol_get_error=True) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=0.00001, protocol_get_error=True) as (agent_update_handler, _): # making multiple agent update attempts agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -222,7 +231,7 @@ def test_it_should_not_agent_update_if_requested_version_is_same_as_current_vers self.prepare_agents() self.assertEqual(20, self.agent_count(), "Agent directories not set properly") - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version( str(CURRENT_VERSION)) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) @@ -242,12 +251,12 @@ def test_it_should_upgrade_agent_if_requested_version_is_available_greater_than_ self.prepare_agents() self.assertEqual(20, self.agent_count(), "Agent directories not set properly") - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, version="9.9.9.10") - self.__assert_agent_directories_exist_and_others_dont_exist(versions=["9.9.9.10", str(CURRENT_VERSION)]) - self.assertIn("Agent update found, exiting current process", ustr(context.exception.reason)) + self._assert_agent_requested_version_in_goal_state(mock_telemetry, version="9.9.9.10") + self._assert_agent_directories_exist_and_others_dont_exist(versions=["9.9.9.10", str(CURRENT_VERSION)]) + self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) def test_it_should_downgrade_agent_if_requested_version_is_available_less_than_current_version(self): data_file = DATA_FILE.copy() @@ -259,16 +268,16 @@ def test_it_should_downgrade_agent_if_requested_version_is_available_less_than_c downgraded_version = "2.5.0" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=downgraded_version) - self.__assert_agent_directories_exist_and_others_dont_exist( + self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=downgraded_version) + self._assert_agent_directories_exist_and_others_dont_exist( versions=[downgraded_version, str(CURRENT_VERSION)]) - self.assertIn("Agent update found, exiting current process", ustr(context.exception.reason)) + self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) def test_it_should_not_downgrade_below_daemon_version(self): data_file = DATA_FILE.copy() @@ -280,17 +289,41 @@ def test_it_should_not_downgrade_below_daemon_version(self): downgraded_version = "1.2.0" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertFalse(os.path.exists(self.agent_dir(downgraded_version)), "New agent directory should not be found") - self.assertEqual(1, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if - "The Agent received a request to downgrade to version" in kwarg[ - 'message'] and kwarg[ - 'op'] == WALAEventOperation.AgentUpgrade]), "We should allow downgrade above daemon version") + + def test_it_should_update_to_largest_version_if_vm_not_enabled_for_rsm_upgrades(self): + self.prepare_agents(count=1) + + data_file = DATA_FILE.copy() + data_file['ext_conf'] = "wire/ext_conf_vm_not_enabled_for_rsm_upgrades.xml" + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self.assertRaises(AgentUpgradeExitException) as context: + agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + self._assert_update_discovered_from_agent_manifest(mock_telemetry, version="99999.0.0.0") + self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) + self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) + + def test_it_should_not_downgrade_to_requested_version_if_version_not_from_rsm(self): + self.prepare_agents(count=1) + data_file = DATA_FILE.copy() + data_file["ext_conf"] = "wire/ext_conf_requested_version_not_from_rsm.xml" + downgraded_version = "2.5.0" + + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): + agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) + agent_update_handler._protocol.mock_wire_data.set_incarnation(2) + agent_update_handler._protocol.client.update_goal_state() + agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + self._assert_agent_directories_exist_and_others_dont_exist( + versions=[str(CURRENT_VERSION)]) + self.assertFalse(os.path.exists(self.agent_dir(downgraded_version)), + "New agent directory should not be found") def test_handles_if_requested_version_not_found_in_pkgs_to_download(self): data_file = DATA_FILE.copy() @@ -302,17 +335,17 @@ def test_handles_if_requested_version_not_found_in_pkgs_to_download(self): version = "5.2.0.4" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self.__assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) self.assertFalse(os.path.exists(self.agent_dir(version)), "New agent directory should not be found") - self.__assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) + self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) def test_handles_missing_agent_family(self): data_file = DATA_FILE.copy() @@ -322,7 +355,7 @@ def test_handles_missing_agent_family(self): self.prepare_agents() self.assertEqual(20, self.agent_count(), "Agent directories not set properly") - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), @@ -337,8 +370,7 @@ def test_it_should_report_update_status_with_success(self): data_file = DATA_FILE.copy() data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): - GAUpdateReportState.report_error_msg = "" + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version( str(CURRENT_VERSION)) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) @@ -353,26 +385,24 @@ def test_it_should_report_update_status_with_error_on_download_fail(self): data_file = DATA_FILE.copy() data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" - with self.__get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): - GAUpdateReportState.report_error_msg = "" + with self._get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Error, vm_agent_update_status.status) self.assertEqual(1, vm_agent_update_status.code) self.assertEqual("9.9.9.10", vm_agent_update_status.expected_version) - self.assertIn("Unable to download Agent", vm_agent_update_status.message) + self.assertIn("Downloaded agent version is in bad state", vm_agent_update_status.message) def test_it_should_report_update_status_with_missing_requested_version_error(self): data_file = DATA_FILE.copy() - data_file['ext_conf'] = "wire/ext_conf.xml" + data_file['ext_conf'] = "wire/ext_conf_requested_version_missing_in_agent_family.xml" - with self.__get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): - GAUpdateReportState.report_error_msg = "" + with self._get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Error, vm_agent_update_status.status) self.assertEqual(1, vm_agent_update_status.code) - self.assertIn("Missing requested version", vm_agent_update_status.message) + self.assertIn("VM Enabled for RSM upgrades but requested version is missing in Goal state", vm_agent_update_status.message) def test_it_should_not_log_same_error_next_hours(self): data_file = DATA_FILE.copy() @@ -382,7 +412,7 @@ def test_it_should_not_log_same_error_next_hours(self): self.prepare_agents() self.assertEqual(20, self.agent_count(), "Agent directories not set properly") - with self.__get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), @@ -398,4 +428,41 @@ def test_it_should_not_log_same_error_next_hours(self): self.assertEqual(1, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "No manifest links found for agent family" in kwarg[ 'message'] and kwarg[ - 'op'] == WALAEventOperation.AgentUpgrade]), "Agent manifest should not be in GS") \ No newline at end of file + 'op'] == WALAEventOperation.AgentUpgrade]), "Agent manifest should not be in GS") + + def test_it_should_save_rsm_state_of_the_most_recent_goal_state(self): + data_file = DATA_FILE.copy() + data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + + with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): + with self.assertRaises(AgentUpgradeExitException): + agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + + state_file = os.path.join(conf.get_lib_dir(), "rsm_version.json") + self.assertTrue(os.path.exists(state_file), "The rsm properties was not saved (can't find {0})".format(state_file)) + + with open(state_file, "r") as state_file_: + state = json.load(state_file_) + + self.assertTrue(state["isVersionFromRSM"], "{0} does not contain True".format(state_file)) + self.assertTrue(state["isVMEnabledForRSMUpgrades"], "{0} does not contain True".format(state_file)) + self.assertEqual(agent_update_handler._is_version_from_rsm, state["isVersionFromRSM"], "{0} does not contain the expected value".format(state_file)) + self.assertEqual(agent_update_handler._is_vm_enabled_for_rsm_upgrades, state["isVMEnabledForRSMUpgrades"], "{0} does not contain the expected value".format(state_file)) + self.assertEqual(agent_update_handler._protocol.get_goal_state().extensions_goal_state.created_on_timestamp, state["timestamp"], "{0} does not contain the expected value".format(state_file)) + + # check if state gets updated if most recent goal state has different values + agent_update_handler._protocol.mock_wire_data.set_extension_config_is_vm_enabled_for_rsm_upgrades("False") + agent_update_handler._protocol.mock_wire_data.set_incarnation(2) + agent_update_handler._protocol.client.update_goal_state() + with self.assertRaises(AgentUpgradeExitException): + agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + + self.assertTrue(os.path.exists(state_file), "The rsm properties was not saved (can't find {0})".format(state_file)) + with open(state_file, "r") as state_file_: + state = json.load(state_file_) + + self.assertTrue(state["isVersionFromRSM"], "{0} does not contain True".format(state_file)) + self.assertFalse(state["isVMEnabledForRSMUpgrades"], "{0} does not contain False".format(state_file)) + self.assertEqual(agent_update_handler._is_version_from_rsm, state["isVersionFromRSM"], "{0} does not contain the expected value".format(state_file)) + self.assertEqual(agent_update_handler._is_vm_enabled_for_rsm_upgrades, state["isVMEnabledForRSMUpgrades"], "{0} does not contain the expected value".format(state_file)) + self.assertEqual(agent_update_handler._protocol.get_goal_state().extensions_goal_state.created_on_timestamp, state["timestamp"], "{0} does not contain the expected value".format(state_file)) \ No newline at end of file diff --git a/tests/ga/test_update.py b/tests/ga/test_update.py index 4c58c850e8..52638b2779 100644 --- a/tests/ga/test_update.py +++ b/tests/ga/test_update.py @@ -21,7 +21,7 @@ from datetime import datetime, timedelta from threading import current_thread from azurelinuxagent.ga.guestagent import GuestAgent, GuestAgentError, \ - AGENT_ERROR_FILE, GAUpdateReportState + AGENT_ERROR_FILE from tests.common.osutil.test_default import TestOSUtil import azurelinuxagent.common.osutil.default as osutil @@ -1268,12 +1268,11 @@ def put_handler(url, *args, **_): protocol.aggregate_status = json.loads(args[0]) return MockHttpResponse(status=201) - def update_goal_state_and_run_handler(autoupdate_enabled = True): + def update_goal_state_and_run_handler(autoupdate_enabled=True): protocol.incarnation += 1 protocol.mock_wire_data.set_incarnation(protocol.incarnation) self._add_write_permission_to_goal_state_files() with _get_update_handler(iterations=1, protocol=protocol, autoupdate_enabled=autoupdate_enabled) as (update_handler, _): - GAUpdateReportState.report_error_msg = "" update_handler.run(debug=True) self.assertEqual(0, update_handler.get_exit_code(), "Exit code should be 0; List of all warnings logged by the agent: {0}".format( @@ -1281,16 +1280,15 @@ def update_goal_state_and_run_handler(autoupdate_enabled = True): protocol.set_http_handlers(http_get_handler=get_handler, http_put_handler=put_handler) - # Case 1: Requested version removed in GS; report missing requested version errr - protocol.mock_wire_data.set_extension_config("wire/ext_conf.xml") - protocol.mock_wire_data.reload() + # Case 1: Requested version missing in GS when vm opt-in for rsm upgrades; report missing requested version error + protocol.mock_wire_data.set_extension_config("wire/ext_conf_requested_version_missing_in_agent_family.xml") update_goal_state_and_run_handler() self.assertTrue("updateStatus" in protocol.aggregate_status['aggregateStatus']['guestAgentStatus'], "updateStatus should be reported") update_status = protocol.aggregate_status['aggregateStatus']['guestAgentStatus']["updateStatus"] self.assertEqual(VMAgentUpdateStatuses.Error, update_status['status'], "Status should be an error") self.assertEqual(update_status['code'], 1, "incorrect code reported") - self.assertIn("Missing requested version", update_status['formattedMessage']['message'], "incorrect message reported") + self.assertIn("VM Enabled for RSM upgrades but requested version is missing in Goal state", update_status['formattedMessage']['message'], "incorrect message reported") # Case 2: Requested version in GS == Current Version; updateStatus should be Success protocol.mock_wire_data.set_extension_config("wire/ext_conf_requested_version.xml") @@ -1437,7 +1435,7 @@ def create_conf_mocks(self, autoupdate_frequency, hotfix_frequency, normal_frequ with patch("azurelinuxagent.common.conf.get_extensions_enabled", return_value=False): with patch("azurelinuxagent.common.conf.get_autoupdate_frequency", return_value=autoupdate_frequency): with patch("azurelinuxagent.common.conf.get_hotfix_upgrade_frequency", return_value=hotfix_frequency): - with patch("azurelinuxagent.common.conf.get_normal_upgrade_frequency", return_value=normal_frequency): + with patch("azurelinuxagent.common.conf.get_regular_upgrade_frequency", return_value=normal_frequency): with patch("azurelinuxagent.common.conf.get_autoupdate_gafamily", return_value="Prod"): with patch("azurelinuxagent.common.conf.get_enable_ga_versioning", return_value=True): yield @@ -1480,7 +1478,7 @@ def __assert_exit_code_successful(self, update_handler): def __assert_upgrade_telemetry_emitted(self, mock_telemetry, upgrade=True, version="9.9.9.10"): upgrade_event_msgs = [kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if - 'Agent update found, exiting current process to {0} to the new Agent version {1}'.format( + 'Agent completed all update checks, exiting current process to {0} to the new Agent version {1}'.format( "upgrade" if upgrade else "downgrade", version) in kwarg['message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade] self.assertEqual(1, len(upgrade_event_msgs), @@ -1593,12 +1591,12 @@ def test_it_should_not_update_if_requested_version_not_found_in_manifest(self): kwarg['op'] in (WALAEventOperation.AgentUpgrade, WALAEventOperation.Download)] # This will throw if corresponding message not found so not asserting on that requested_version_found = next(kwarg for kwarg in agent_msgs if - "discovered new agent version:5.2.1.0 in agent manifest for goal state incarnation_1, will update the agent before processing the goal state" in kwarg['message']) + "Goal state incarnation_1 is requesting a new agent version 5.2.1.0, will update the agent before processing the goal state" in kwarg['message']) self.assertTrue(requested_version_found['is_success'], "The requested version found op should be reported as a success") skipping_update = next(kwarg for kwarg in agent_msgs if - "No matching package found in the agent manifest for requested version: 5.2.1.0 in goal state incarnation: incarnation_1, skipping agent update" in kwarg['message']) + "No matching package found in the agent manifest for version: 5.2.1.0 in goal state incarnation: incarnation_1, skipping agent update" in kwarg['message']) self.assertEqual(skipping_update['version'], str(CURRENT_VERSION), "The not found message should be reported from current agent version") self.assertFalse(skipping_update['is_success'], "The not found op should be reported as a failure") @@ -1664,9 +1662,9 @@ def reload_conf(url, protocol): # By this point, the GS with requested version should've been executed. Verify that self.__assert_agent_directories_available(versions=[str(CURRENT_VERSION)]) - # Update the ext-conf and incarnation and remove requested versions from GS, - # this should download all versions requested in config - mock_wire_data.data_files["ext_conf"] = "wire/ext_conf.xml" + # Update the ga_manifest and incarnation to send largest version manifest + # this should download largest version requested in config + mock_wire_data.data_files["ga_manifest"] = "wire/ga_manifest.xml" mock_wire_data.reload() self._add_write_permission_to_goal_state_files() reload_conf.incarnation += 1 @@ -1676,9 +1674,9 @@ def reload_conf(url, protocol): reload_conf.incarnation = 2 data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf.xml" + data_file["ga_manifest"] = "wire/ga_manifest_no_upgrade.xml" with self.__get_update_handler(iterations=no_of_iterations, test_data=data_file, reload_conf=reload_conf) as (update_handler, mock_telemetry): - update_handler._protocol.mock_wire_data.set_extension_config_requested_version(str(CURRENT_VERSION)) update_handler._protocol.mock_wire_data.set_incarnation(2) update_handler.run(debug=True) @@ -1843,6 +1841,43 @@ def test_it_should_mark_current_agent_as_bad_version_on_downgrade(self): "Invalid reason specified for blacklisting agent") self.__assert_agent_directories_exist_and_others_dont_exist(versions=[downgraded_version, str(CURRENT_VERSION)]) + def test_it_should_do_self_update_if_vm_opt_out_rsm_upgrades_later(self): + no_of_iterations = 100 + + # Set the test environment by adding 20 random agents to the agent directory + self.prepare_agents() + self.assertEqual(20, self.agent_count(), "Agent directories not set properly") + def reload_conf(url, protocol): + mock_wire_data = protocol.mock_wire_data + + # This function reloads the conf mid-run to mimic an actual customer scenario + if HttpRequestPredicates.is_goal_state_request(url) and mock_wire_data.call_counts["goalstate"] >= 5: + reload_conf.call_count += 1 + + # Assert GA version from status to ensure agent is running fine from the current version + self.__assert_ga_version_in_status(protocol.aggregate_status) + + # Update is_vm_enabled_for_rsm_upgrades flag to False + update_handler._protocol.mock_wire_data.set_extension_config_is_vm_enabled_for_rsm_upgrades("False") + self._add_write_permission_to_goal_state_files() + mock_wire_data.set_incarnation(2) + + reload_conf.call_count = 0 + + data_file = wire_protocol_data.DATA_FILE.copy() + data_file['ext_conf'] = "wire/ext_conf_requested_version.xml" + with self.__get_update_handler(iterations=no_of_iterations, test_data=data_file, reload_conf=reload_conf) as (update_handler, mock_telemetry): + update_handler._protocol.mock_wire_data.set_extension_config_requested_version(str(CURRENT_VERSION)) + update_handler._protocol.mock_wire_data.set_incarnation(20) + update_handler.run(debug=True) + + self.assertGreater(reload_conf.call_count, 0, "Reload conf not updated") + self.assertLess(update_handler.get_iterations(), no_of_iterations, + "The code should've exited as soon as version was found") + self.__assert_exit_code_successful(update_handler) + self.__assert_upgrade_telemetry_emitted(mock_telemetry, version="99999.0.0.0") + self.__assert_agent_directories_exist_and_others_dont_exist(versions=["99999.0.0.0", str(CURRENT_VERSION)]) + @patch('azurelinuxagent.ga.update.get_collect_telemetry_events_handler') @patch('azurelinuxagent.ga.update.get_send_telemetry_events_handler') @@ -1980,7 +2015,7 @@ def _create_agent_families(family, versions): families = [] if len(versions) > 0 and family is not None: - manifest = VMAgentFamily(name=family) + manifest = VMAgentFamily(name=family, version=None) for i in range(0, 10): manifest.uris.append("https://nowhere.msft/agent/{0}".format(i)) families.append(manifest) @@ -2540,4 +2575,4 @@ def test_inequality_operator_should_return_false_on_items_with_same_value(self): if __name__ == '__main__': - unittest.main() + unittest.main() \ No newline at end of file diff --git a/tests/lib/wire_protocol_data.py b/tests/lib/wire_protocol_data.py index 2bc18e34f1..907640a790 100644 --- a/tests/lib/wire_protocol_data.py +++ b/tests/lib/wire_protocol_data.py @@ -466,5 +466,8 @@ def set_ga_manifest(self, ga_manifest): def set_extension_config_requested_version(self, version): self.ext_conf = WireProtocolData.replace_xml_element_value(self.ext_conf, "Version", version) + def set_extension_config_is_vm_enabled_for_rsm_upgrades(self, is_vm_enabled_for_rsm_upgrades): + self.ext_conf = WireProtocolData.replace_xml_element_value(self.ext_conf, "IsVMEnabledForRSMUpgrades", is_vm_enabled_for_rsm_upgrades) + def set_ga_manifest_version_version(self, version): self.ga_manifest = WireProtocolData.replace_xml_element_value(self.ga_manifest, "Version", version) From 7e16f99735ab86d77b9d726eab309389a0f53e3b Mon Sep 17 00:00:00 2001 From: nnandigam Date: Fri, 3 Nov 2023 13:41:28 -0700 Subject: [PATCH 02/11] added comment --- azurelinuxagent/ga/agent_update_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index 62d2ae6648..f682805fda 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -155,7 +155,7 @@ def _update_rsm_version_state_if_changed(self, goalstate_timestamp, agent_family Persisting state to address the issue when HGPA supported(properties present) to unsupported(properties not present) and also sync between Wireserver and HGAP. Updates the isVrsionFromRSM and isVMEnabledForRSMUpgrades of the most recent goal state retrieved if properties changed from last rsm state. - Timestamp is the timestamp of the goal state used to update the state. + Timestamp is the timestamp of the goal state used to update the state. This timestamp helps ignore old goal states when it gets to the vm as a recent goal state. """ last_timestamp = self._get_rsm_state_used_gs_timestamp() # update the state if the goal state is newer than the last goal state used to update the state. From ff2f99d0897a0ac546512d0150704cf29e075c03 Mon Sep 17 00:00:00 2001 From: nnandigam Date: Wed, 8 Nov 2023 15:33:58 -0800 Subject: [PATCH 03/11] added abstract decorator --- azurelinuxagent/ga/agent_update_handler.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index f682805fda..b7d43870a6 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -3,6 +3,7 @@ import json import os import shutil +from abc import abstractmethod, ABC from azurelinuxagent.common import conf, logger from azurelinuxagent.common.event import add_event, WALAEventOperation @@ -272,7 +273,7 @@ def get_vmagent_update_status(self): return None -class GAVersionUpdater(object): +class GAVersionUpdater(ABC): def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): self._gs_id = gs_id @@ -281,6 +282,7 @@ def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): self._version = version self._update_state = update_state + @abstractmethod def should_update_agent(self, goal_state): """ RSM requested version update: @@ -293,14 +295,14 @@ def should_update_agent(self, goal_state): 3) not below than current version return false when we don't allow updates. """ - raise NotImplementedError + @abstractmethod def log_new_agent_update_message(self): """ This function logs the update message after we check agent allowed to update. """ - raise NotImplementedError + @abstractmethod def purge_extra_agents_from_disk(self): """ RSM requested version update: @@ -309,8 +311,8 @@ def purge_extra_agents_from_disk(self): Largest version update(self-update): remove the agents from disk except current version and new agent version if exists """ - raise NotImplementedError + @abstractmethod def proceed_with_update(self): """ RSM requested version update: @@ -320,7 +322,6 @@ def proceed_with_update(self): If largest version is found in manifest, upgrade to that version. Downgrade is not supported. Raises: AgentUpgradeExitException """ - raise NotImplementedError def download_and_get_new_agent(self, protocol, goal_state): """ From c9ee2014efa7b4b2c6da62268082833dc2ba3abe Mon Sep 17 00:00:00 2001 From: nnandigam Date: Wed, 8 Nov 2023 15:43:41 -0800 Subject: [PATCH 04/11] undo abstract change --- azurelinuxagent/ga/agent_update_handler.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index b7d43870a6..f682805fda 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -3,7 +3,6 @@ import json import os import shutil -from abc import abstractmethod, ABC from azurelinuxagent.common import conf, logger from azurelinuxagent.common.event import add_event, WALAEventOperation @@ -273,7 +272,7 @@ def get_vmagent_update_status(self): return None -class GAVersionUpdater(ABC): +class GAVersionUpdater(object): def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): self._gs_id = gs_id @@ -282,7 +281,6 @@ def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): self._version = version self._update_state = update_state - @abstractmethod def should_update_agent(self, goal_state): """ RSM requested version update: @@ -295,14 +293,14 @@ def should_update_agent(self, goal_state): 3) not below than current version return false when we don't allow updates. """ + raise NotImplementedError - @abstractmethod def log_new_agent_update_message(self): """ This function logs the update message after we check agent allowed to update. """ + raise NotImplementedError - @abstractmethod def purge_extra_agents_from_disk(self): """ RSM requested version update: @@ -311,8 +309,8 @@ def purge_extra_agents_from_disk(self): Largest version update(self-update): remove the agents from disk except current version and new agent version if exists """ + raise NotImplementedError - @abstractmethod def proceed_with_update(self): """ RSM requested version update: @@ -322,6 +320,7 @@ def proceed_with_update(self): If largest version is found in manifest, upgrade to that version. Downgrade is not supported. Raises: AgentUpgradeExitException """ + raise NotImplementedError def download_and_get_new_agent(self, protocol, goal_state): """ From e8a2e1aaa0f5a04c52655b923b77733741d8d6c0 Mon Sep 17 00:00:00 2001 From: nnandigam Date: Thu, 9 Nov 2023 14:02:53 -0800 Subject: [PATCH 05/11] update names --- azurelinuxagent/common/conf.py | 8 +- azurelinuxagent/common/protocol/restapi.py | 4 +- azurelinuxagent/ga/agent_update_handler.py | 102 +++++++++--------- runtime/cache/azure_locations_westus2.json | 1 - ...sions_goal_state_from_extensions_config.py | 8 +- ..._extensions_goal_state_from_vm_settings.py | 10 +- ....xml => ext_conf-agent_family_version.xml} | 0 ...ext_conf-rsm_version_properties_false.xml} | 0 ... => vm_settings-agent_family_version.json} | 0 ...d_version.xml => ext_conf_rsm_version.xml} | 0 ..._conf_version_missing_in_agent_family.xml} | 0 ... ext_conf_version_missing_in_manifest.xml} | 0 ....xml => ext_conf_version_not_from_rsm.xml} | 0 tests/ga/test_agent_update_handler.py | 76 ++++++------- tests/ga/test_update.py | 84 +++++++-------- tests/lib/wire_protocol_data.py | 2 +- .../scripts/agent_update-wait_for_rsm_gs.py | 4 +- 17 files changed, 149 insertions(+), 150 deletions(-) delete mode 100644 runtime/cache/azure_locations_westus2.json rename tests/data/hostgaplugin/{ext_conf-requested_version.xml => ext_conf-agent_family_version.xml} (100%) rename tests/data/hostgaplugin/{ext_conf-requested_version_properties_false.xml => ext_conf-rsm_version_properties_false.xml} (100%) rename tests/data/hostgaplugin/{vm_settings-requested_version.json => vm_settings-agent_family_version.json} (100%) rename tests/data/wire/{ext_conf_requested_version.xml => ext_conf_rsm_version.xml} (100%) rename tests/data/wire/{ext_conf_requested_version_missing_in_agent_family.xml => ext_conf_version_missing_in_agent_family.xml} (100%) rename tests/data/wire/{ext_conf_requested_version_missing_in_manifest.xml => ext_conf_version_missing_in_manifest.xml} (100%) rename tests/data/wire/{ext_conf_requested_version_not_from_rsm.xml => ext_conf_version_not_from_rsm.xml} (100%) diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py index c060b12574..57d6c9d280 100644 --- a/azurelinuxagent/common/conf.py +++ b/azurelinuxagent/common/conf.py @@ -622,20 +622,20 @@ def get_etp_collection_period(conf=__conf__): return conf.get_int("Debug.EtpCollectionPeriod", 300) -def get_hotfix_upgrade_frequency(conf=__conf__): +def get_self_update_hotfix_frequency(conf=__conf__): """ Determines the frequency to check for Hotfix upgrades ( version changed in new upgrades). NOTE: This option is experimental and may be removed in later versions of the Agent. """ - return conf.get_int("Debug.AutoUpdateHotfixFrequency", 4 * 60 * 60) + return conf.get_int("Debug.SelfUpdateHotfixFrequency", 4 * 60 * 60) -def get_regular_upgrade_frequency(conf=__conf__): +def get_self_update_regular_frequency(conf=__conf__): """ Determines the frequency to check for regular upgrades (.. version changed in new upgrades). NOTE: This option is experimental and may be removed in later versions of the Agent. """ - return conf.get_int("Debug.AutoUpdateRegularFrequency", 24 * 60 * 60) + return conf.get_int("Debug.SelfUpdateRegularFrequency", 24 * 60 * 60) def get_enable_ga_versioning(conf=__conf__): diff --git a/azurelinuxagent/common/protocol/restapi.py b/azurelinuxagent/common/protocol/restapi.py index 6a94d65f0a..0ec34db866 100644 --- a/azurelinuxagent/common/protocol/restapi.py +++ b/azurelinuxagent/common/protocol/restapi.py @@ -70,8 +70,8 @@ def __init__(self): class VMAgentFamily(object): def __init__(self, name, version): self.name = name - # This is the Requested version as specified by the Goal State - self.requested_version = version + # This is the version as specified by the Goal State + self.version = version # Set to None if the property not specified in the GS and later computed True/False based on previous state in agent update self.is_version_from_rsm = None # Set to None if this property not specified in the GS and later computed True/False based on previous state in agent update diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index f682805fda..b951959135 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -20,9 +20,9 @@ def get_agent_update_handler(protocol): return AgentUpdateHandler(protocol) -class AgentUpgradeType(object): +class SelfUpdateType(object): """ - Enum for different modes of Agent Upgrade + Enum for different modes of Self updates """ Hotfix = "Hotfix" Regular = "Regular" @@ -34,9 +34,9 @@ class AgentUpdateHandlerUpdateState(object): This state will be persisted throughout the current service run. """ def __init__(self): - self.last_attempted_requested_version_update_time = datetime.datetime.min - self.last_attempted_hotfix_update_time = datetime.datetime.min - self.last_attempted_regular_update_time = datetime.datetime.min + self.last_attempted_rsm_version_update_time = datetime.datetime.min + self.last_attempted_self_update_hotfix_time = datetime.datetime.min + self.last_attempted_self_update_regular_time = datetime.datetime.min self.last_attempted_manifest_download_time = datetime.datetime.min self.last_attempted_update_error_msg = "" self.last_attempted_update_version = FlexibleVersion("0.0.0.0") @@ -49,11 +49,11 @@ class AgentUpdateHandler(object): version: it will have what version to update isVersionFromRSM: True if the version is from RSM deployment. isVMEnabledForRSMUpgrades: True if the VM is enabled for RSM upgrades. - if vm enabled for RSM upgrades and get a requested version, we use RSM update path. But if requested update is downgarde then we check - isVersionFomRSM true to consider the update otherwise we ignore the update if version not from RSM deployment. + if vm enabled for RSM upgrades, we use RSM update path. But if requested update is not by rsm deployment + we ignore the update. This update is allowed once per (as specified in the conf.get_autoupdate_frequency()) - Largest version update(self-update): We fallback to this if above is condition not met. This update to the largest version available in the manifest - we allow update once per (as specified in the conf.get_hotfix_upgrade_frequency() or conf.get_normal_upgrade_frequency()) + Self update: We fallback to this if above is condition not met. This update to the largest version available in the manifest + we allow update once per (as specified in the conf.get_self_update_hotfix_frequency() or conf.get_self_update_regular_frequency()) Note: Self-update don't support downgrade. """ def __init__(self, protocol): @@ -198,14 +198,14 @@ def _get_agent_family_manifest(self, goal_state): return agent_family_manifests[0] @staticmethod - def _get_requested_version(agent_family): + def _get_version_from_gs(agent_family): """ - Get the requested version from agent family - Returns: Requested version if supported and available in the GS - None if requested version missing + Get the version from agent family + Returns: version if supported and available in the GS + None if version is missing """ - if agent_family.requested_version is not None: - return FlexibleVersion(agent_family.requested_version) + if agent_family.version is not None: + return FlexibleVersion(agent_family.version) return None def run(self, goal_state): @@ -216,15 +216,15 @@ def run(self, goal_state): return agent_family = self._get_agent_family_manifest(goal_state) - requested_version = self._get_requested_version(agent_family) + version = self._get_version_from_gs(agent_family) gs_id = goal_state.extensions_goal_state.id self._update_rsm_version_state_if_changed(goal_state.extensions_goal_state.created_on_timestamp, agent_family) - # if requested version is specified and vm is enabled for rsm upgrades, use rsm update path, else sef-update - if requested_version is None and self._is_vm_enabled_for_rsm_upgrades: - raise AgentUpdateError("VM Enabled for RSM upgrades but requested version is missing in Goal state: {0}, so skipping agent update".format(gs_id)) - elif conf.get_enable_ga_versioning() and requested_version is not None and self._is_vm_enabled_for_rsm_upgrades: - updater = RSMVersionUpdater(gs_id, agent_family, None, requested_version, self.update_state, self._is_version_from_rsm, self._daemon_version) - self.update_state.last_attempted_update_version = requested_version + # if version is specified and vm is enabled for rsm upgrades, use rsm update path, else sef-update + if version is None and self._is_vm_enabled_for_rsm_upgrades and self._is_version_from_rsm: + raise AgentUpdateError("VM Enabled for RSM upgrades but version is missing in Goal state: {0}, so skipping agent update".format(gs_id)) + elif conf.get_enable_ga_versioning() and self._is_vm_enabled_for_rsm_upgrades: + updater = RSMVersionUpdater(gs_id, agent_family, None, version, self.update_state, self._is_version_from_rsm, self._daemon_version) + self.update_state.last_attempted_update_version = version else: updater = SelfUpdateVersionUpdater(gs_id, agent_family, None, None, self.update_state) @@ -254,10 +254,10 @@ def run(self, goal_state): def get_vmagent_update_status(self): """ This function gets the VMAgent update status as per the last attempted update. - Returns: None if fail to report or update never attempted with requested version + Returns: None if fail to report or update never attempted with rsm version specified in GS """ try: - if conf.get_enable_ga_versioning() and self._is_vm_enabled_for_rsm_upgrades: + if conf.get_enable_ga_versioning() and self._is_vm_enabled_for_rsm_upgrades and self._is_version_from_rsm: if not self.update_state.last_attempted_update_error_msg: status = VMAgentUpdateStatuses.Success code = 0 @@ -283,13 +283,13 @@ def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): def should_update_agent(self, goal_state): """ - RSM requested version update: + RSM version update: update is allowed once per (as specified in the conf.get_autoupdate_frequency()) and if new version not same as current version, not below than daemon version and if version is from rsm request return false when we don't allow updates. - Largest version update(self-update): + self-update: 1) checks if we allowed download manifest as per manifest download frequency - 2) update is allowed once per (as specified in the conf.get_hotfix_upgrade_frequency() or conf.get_regular_upgrade_frequency()) + 2) update is allowed once per (as specified in the conf.get_self_update_hotfix_frequency() or conf.get_self_update_regular_frequency()) 3) not below than current version return false when we don't allow updates. """ @@ -303,20 +303,20 @@ def log_new_agent_update_message(self): def purge_extra_agents_from_disk(self): """ - RSM requested version update: - remove the agents( including requested version if exists) from disk except current version. There is a chance that requested version could exist and/or blacklisted - on previous update attempts. So we should remove it from disk in order to honor current requested version update. - Largest version update(self-update): + RSM version update: + remove the agents( including rsm version if exists) from disk except current version. There is a chance that rsm version could exist and/or blacklisted + on previous update attempts. So we should remove it from disk in order to honor current rsm version update. + self-update: remove the agents from disk except current version and new agent version if exists """ raise NotImplementedError def proceed_with_update(self): """ - RSM requested version update: - If requested version is specified, upgrade/downgrade to the specified version. + RSM version update: + upgrade/downgrade to the specified version. Raises: AgentUpgradeExitException - Largest version update(self-update): + self-update: If largest version is found in manifest, upgrade to that version. Downgrade is not supported. Raises: AgentUpgradeExitException """ @@ -385,19 +385,19 @@ def _get_available_agents_on_disk(self): def _is_update_allowed_this_time(self): """ update is allowed once per (as specified in the conf.get_autoupdate_frequency()) - If update allowed, we update the last_attempted_requested_version_update_time to current time. + If update allowed, we update the last_attempted_rsm_version_update_time to current time. """ now = datetime.datetime.now() - if self._update_state.last_attempted_requested_version_update_time != datetime.datetime.min: - next_attempt_time = self._update_state.last_attempted_requested_version_update_time + datetime.timedelta( + if self._update_state.last_attempted_rsm_version_update_time != datetime.datetime.min: + next_attempt_time = self._update_state.last_attempted_rsm_version_update_time + datetime.timedelta( seconds=conf.get_autoupdate_frequency()) else: next_attempt_time = now if next_attempt_time > now: return False - self._update_state.last_attempted_requested_version_update_time = now + self._update_state.last_attempted_rsm_version_update_time = now # The time limit elapsed for us to allow updates. return True @@ -405,14 +405,14 @@ def should_update_agent(self, goal_state): if not self._is_update_allowed_this_time(): return False - # we don't allow downgrades below daemon version, or if it's same as current version, or requested version < current version and that version not from RSM - if self._version < self._daemon_version or self._version == CURRENT_VERSION or (self._version < CURRENT_VERSION and not self._is_version_from_rsm): + # we don't allow updates if version is not from RSM or downgrades below daemon version or if version is same as current version + if not self._is_version_from_rsm or self._version < self._daemon_version or self._version == CURRENT_VERSION: return False return True def log_new_agent_update_message(self): - msg = "Goal state {0} is requesting a new agent version {1}, will update the agent before processing the goal state.".format(self._gs_id, str(self._version)) + msg = "New agent version:{0} requested by RSM in Goal state {1}, will update the agent before processing the goal state.".format(str(self._version), self._gs_id) logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) @@ -468,8 +468,8 @@ def _get_agent_upgrade_type(version): # We follow semantic versioning for the agent, if .. is same, then has changed. # In this case, we consider it as a Hotfix upgrade. Else we consider it a Regular upgrade. if version.major == CURRENT_VERSION.major and version.minor == CURRENT_VERSION.minor and version.patch == CURRENT_VERSION.patch: - return AgentUpgradeType.Hotfix - return AgentUpgradeType.Regular + return SelfUpdateType.Hotfix + return SelfUpdateType.Regular def _get_next_upgrade_times(self, now): """ @@ -480,10 +480,10 @@ def _get_next_upgrade_times(self, now): def get_next_process_time(last_val, frequency): return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) - next_hotfix_time = get_next_process_time(self._update_state.last_attempted_hotfix_update_time, - conf.get_hotfix_upgrade_frequency()) - next_regular_time = get_next_process_time(self._update_state.last_attempted_regular_update_time, - conf.get_regular_upgrade_frequency()) + next_hotfix_time = get_next_process_time(self._update_state.last_attempted_self_update_hotfix_time, + conf.get_self_update_hotfix_frequency()) + next_regular_time = get_next_process_time(self._update_state.last_attempted_self_update_regular_time, + conf.get_self_update_regular_frequency()) return next_hotfix_time, next_regular_time @@ -495,11 +495,11 @@ def _is_update_allowed_this_time(self): next_hotfix_time, next_regular_time = self._get_next_upgrade_times(now) upgrade_type = self._get_agent_upgrade_type(self._version) - if (upgrade_type == AgentUpgradeType.Hotfix and next_hotfix_time <= now) or ( - upgrade_type == AgentUpgradeType.Regular and next_regular_time <= now): + if (upgrade_type == SelfUpdateType.Hotfix and next_hotfix_time <= now) or ( + upgrade_type == SelfUpdateType.Regular and next_regular_time <= now): # Update the last upgrade check time even if no new agent is available for upgrade - self._update_state.last_attempted_hotfix_update_time = now - self._update_state.last_attempted_regular_update_time = now + self._update_state.last_attempted_self_update_hotfix_time = now + self._update_state.last_attempted_self_update_regular_time = now return True return False diff --git a/runtime/cache/azure_locations_westus2.json b/runtime/cache/azure_locations_westus2.json deleted file mode 100644 index 7e528c756d..0000000000 --- a/runtime/cache/azure_locations_westus2.json +++ /dev/null @@ -1 +0,0 @@ -{"updated_time": "2023-11-03T11:51:24.159209", "location": "westus2", "capabilities": {"AZAP_Harvest_Compute_2": {"location": "westus2", "vm_size": "AZAP_Harvest_Compute_2", "capability": {"type": "requirement", "name": "westus2_AZAP_Harvest_Compute_2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Harvest_Compute_2", "tier": "Standard", "size": "Harvest_Compute_2", "family": "azapHarvestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "48234496"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24117248"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "AZAP_Harvest_Compute_4": {"location": "westus2", "vm_size": "AZAP_Harvest_Compute_4", "capability": {"type": "requirement", "name": "westus2_AZAP_Harvest_Compute_4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Harvest_Compute_4", "tier": "Standard", "size": "Harvest_Compute_4", "family": "azapHarvestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "AZAP_Harvest_Compute_8": {"location": "westus2", "vm_size": "AZAP_Harvest_Compute_8", "capability": {"type": "requirement", "name": "westus2_AZAP_Harvest_Compute_8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Harvest_Compute_8", "tier": "Standard", "size": "Harvest_Compute_8", "family": "azapHarvestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "AZAP_Performance_ComputeGen6_1_96": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeGen6_1_96", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeGen6_1_96", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 169984, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeGen6_1_96", "tier": "Standard", "size": "Performance_ComputeGen6_1_96", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3145728"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "166"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 147456, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen6_1CFpga_Search_FN", "tier": "Standard", "size": "Performance_ComputeIntelGen6_1CFpga_Search_FN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2245632"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "144"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_0CFpga_100": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_0CFpga_100", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_0CFpga_100", "is_default": false, "node_count": 1, "core_count": 100, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_0CFpga_100", "tier": "Standard", "size": "Performance_ComputeIntelGen7_0CFpga_100", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16420864"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "100"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "100"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_2B_Search_FN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_2B_Search_FN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_2B_Search_FN", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 294912, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_2B_Search_FN", "tier": "Standard", "size": "Performance_ComputeIntelGen7_2B_Search_FN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "119417856"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "288"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN", "is_default": false, "node_count": 1, "core_count": 50, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_2CFpga_Search_PN", "tier": "Standard", "size": "Performance_ComputeIntelGen7_2CFpga_Search_PN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2197265"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "50"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "50"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "AZAP_Performance_ComputeIntelGen7_2C_Search_PN": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeIntelGen7_2C_Search_PN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeIntelGen7_2C_Search_PN", "is_default": false, "node_count": 1, "core_count": 50, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeIntelGen7_2C_Search_PN", "tier": "Standard", "size": "Performance_ComputeIntelGen7_2C_Search_PN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "12878417"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "50"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "50"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "AZAP_Performance_ComputeV17B_40": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17B_40", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17B_40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 235520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17B_40", "tier": "Standard", "size": "Performance_ComputeV17B_40", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "94371840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "230"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeV17B_76": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17B_76", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17B_76", "is_default": false, "node_count": 1, "core_count": 76, "memory_mb": 235520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17B_76", "tier": "Standard", "size": "Performance_ComputeV17B_76", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "94371840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "76"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "230"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_ComputeV17C_12": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17C_12", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17C_12", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 47247, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17C_12", "tier": "Standard", "size": "Performance_ComputeV17C_12", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "549756"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "46.14"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "AZAP_Performance_ComputeV17W_38_HalfNode": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17W_38_HalfNode", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17W_38_HalfNode", "is_default": false, "node_count": 1, "core_count": 38, "memory_mb": 58880, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17W_38_HalfNode", "tier": "Standard", "size": "Performance_ComputeV17W_38_HalfNode", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1600000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "38"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "57.5"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "AZAP_Performance_ComputeV17W_76": {"location": "westus2", "vm_size": "AZAP_Performance_ComputeV17W_76", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_ComputeV17W_76", "is_default": false, "node_count": 1, "core_count": 76, "memory_mb": 117760, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_ComputeV17W_76", "tier": "Standard", "size": "Performance_ComputeV17W_76", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3200000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "76"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "115"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "AZAP_Performance_Compute_Cosmos_Gen7_FN": {"location": "westus2", "vm_size": "AZAP_Performance_Compute_Cosmos_Gen7_FN", "capability": {"type": "requirement", "name": "westus2_AZAP_Performance_Compute_Cosmos_Gen7_FN", "is_default": false, "node_count": 1, "core_count": 256, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "AZAP_Performance_Compute_Cosmos_Gen7_FN", "tier": "Standard", "size": "Performance_Compute_Cosmos_Gen7_FN", "family": "azapPerformanceFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "10253906"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "256"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "256"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Basic_A0": {"location": "westus2", "vm_size": "Basic_A0", "capability": {"type": "requirement", "name": "westus2_Basic_A0", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A0", "tier": "Basic", "size": "A0", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.75"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "50"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A1": {"location": "westus2", "vm_size": "Basic_A1", "capability": {"type": "requirement", "name": "westus2_Basic_A1", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1792, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A1", "tier": "Basic", "size": "A1", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "40960"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "1.75"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A2": {"location": "westus2", "vm_size": "Basic_A2", "capability": {"type": "requirement", "name": "westus2_Basic_A2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A2", "tier": "Basic", "size": "A2", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "61440"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A3": {"location": "westus2", "vm_size": "Basic_A3", "capability": {"type": "requirement", "name": "westus2_Basic_A3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A3", "tier": "Basic", "size": "A3", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "122880"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Basic_A4": {"location": "westus2", "vm_size": "Basic_A4", "capability": {"type": "requirement", "name": "westus2_Basic_A4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Basic_A4", "tier": "Basic", "size": "A4", "family": "basicAFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "245760"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "D16s_Flex": {"location": "westus2", "vm_size": "D16s_Flex", "capability": {"type": "requirement", "name": "westus2_D16s_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D16s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D16_Flex": {"location": "westus2", "vm_size": "D16_Flex", "capability": {"type": "requirement", "name": "westus2_D16_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D16_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D2s_Flex": {"location": "westus2", "vm_size": "D2s_Flex", "capability": {"type": "requirement", "name": "westus2_D2s_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D2s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D2_Flex": {"location": "westus2", "vm_size": "D2_Flex", "capability": {"type": "requirement", "name": "westus2_D2_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D2_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D32s_Flex": {"location": "westus2", "vm_size": "D32s_Flex", "capability": {"type": "requirement", "name": "westus2_D32s_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D32s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D32_Flex": {"location": "westus2", "vm_size": "D32_Flex", "capability": {"type": "requirement", "name": "westus2_D32_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D32_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D4s_Flex": {"location": "westus2", "vm_size": "D4s_Flex", "capability": {"type": "requirement", "name": "westus2_D4s_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D4s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D4_Flex": {"location": "westus2", "vm_size": "D4_Flex", "capability": {"type": "requirement", "name": "westus2_D4_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D4_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "D64s_Flex": {"location": "westus2", "vm_size": "D64s_Flex", "capability": {"type": "requirement", "name": "westus2_D64s_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D64s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D64_Flex": {"location": "westus2", "vm_size": "D64_Flex", "capability": {"type": "requirement", "name": "westus2_D64_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D64_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "D8s_Flex": {"location": "westus2", "vm_size": "D8s_Flex", "capability": {"type": "requirement", "name": "westus2_D8s_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D8s_Flex", "tier": "Standard", "size": "Flex", "family": "DSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "D8_Flex": {"location": "westus2", "vm_size": "D8_Flex", "capability": {"type": "requirement", "name": "westus2_D8_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "D8_Flex", "tier": "Standard", "size": "Flex", "family": "DFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "E16s_Flex": {"location": "westus2", "vm_size": "E16s_Flex", "capability": {"type": "requirement", "name": "westus2_E16s_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E16s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E16_Flex": {"location": "westus2", "vm_size": "E16_Flex", "capability": {"type": "requirement", "name": "westus2_E16_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E16_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E20s_Flex": {"location": "westus2", "vm_size": "E20s_Flex", "capability": {"type": "requirement", "name": "westus2_E20s_Flex", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E20s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "327680000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "327680000"}, {"name": "CachedDiskBytes", "value": "536870912000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E20_Flex": {"location": "westus2", "vm_size": "E20_Flex", "capability": {"type": "requirement", "name": "westus2_E20_Flex", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E20_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "30000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "491520000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "245760000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E2s_Flex": {"location": "westus2", "vm_size": "E2s_Flex", "capability": {"type": "requirement", "name": "westus2_E2s_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E2s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E2_Flex": {"location": "westus2", "vm_size": "E2_Flex", "capability": {"type": "requirement", "name": "westus2_E2_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E2_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E32s_Flex": {"location": "westus2", "vm_size": "E32s_Flex", "capability": {"type": "requirement", "name": "westus2_E32s_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E32s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E32_Flex": {"location": "westus2", "vm_size": "E32_Flex", "capability": {"type": "requirement", "name": "westus2_E32_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E32_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E4s_Flex": {"location": "westus2", "vm_size": "E4s_Flex", "capability": {"type": "requirement", "name": "westus2_E4s_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E4s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E4_Flex": {"location": "westus2", "vm_size": "E4_Flex", "capability": {"type": "requirement", "name": "westus2_E4_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E4_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "E64s_Flex": {"location": "westus2", "vm_size": "E64s_Flex", "capability": {"type": "requirement", "name": "westus2_E64s_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E64s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E64_Flex": {"location": "westus2", "vm_size": "E64_Flex", "capability": {"type": "requirement", "name": "westus2_E64_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E64_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "E8s_Flex": {"location": "westus2", "vm_size": "E8s_Flex", "capability": {"type": "requirement", "name": "westus2_E8s_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E8s_Flex", "tier": "Standard", "size": "Flex", "family": "ESFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "E8_Flex": {"location": "westus2", "vm_size": "E8_Flex", "capability": {"type": "requirement", "name": "westus2_E8_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "E8_Flex", "tier": "Standard", "size": "Flex", "family": "EFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT0": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT0", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT0", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT0", "tier": "Standard", "size": "OVLTest_CurrentT0", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "72704"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "5500"}, {"name": "UncachedDiskBytesPerSecond", "value": "156000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT1": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT1", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT1", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT1", "tier": "Standard", "size": "OVLTest_CurrentT1", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "145408"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "11000"}, {"name": "UncachedDiskBytesPerSecond", "value": "350000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT2": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT2", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT2", "tier": "Standard", "size": "OVLTest_CurrentT2", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "291840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "22000"}, {"name": "UncachedDiskBytesPerSecond", "value": "625000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT3": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT3", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT3", "tier": "Standard", "size": "OVLTest_CurrentT3", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "584704"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "44000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1250000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT4": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT4", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT4", "tier": "Standard", "size": "OVLTest_CurrentT4", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1169408"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "88000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT5": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT5", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT5", "tier": "Standard", "size": "OVLTest_CurrentT5", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1755136"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "132000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT6": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT6", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT6", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT6", "tier": "Standard", "size": "OVLTest_CurrentT6", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2339840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "176000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT7": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT7", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT7", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT7", "tier": "Standard", "size": "OVLTest_CurrentT7", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3510272"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT8": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT8", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT8", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT8", "tier": "Standard", "size": "OVLTest_CurrentT8", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Experimental_OVLTest_CurrentT9": {"location": "westus2", "vm_size": "Experimental_OVLTest_CurrentT9", "capability": {"type": "requirement", "name": "westus2_Experimental_OVLTest_CurrentT9", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Experimental_OVLTest_CurrentT9", "tier": "Standard", "size": "OVLTest_CurrentT9", "family": "experimentalOverlakeFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "ExtraLarge_Internal": {"location": "westus2", "vm_size": "ExtraLarge_Internal", "capability": {"type": "requirement", "name": "westus2_ExtraLarge_Internal", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "ExtraLarge_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "366592"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "ExtraSmall_Internal": {"location": "westus2", "vm_size": "ExtraSmall_Internal", "capability": {"type": "requirement", "name": "westus2_ExtraSmall_Internal", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "ExtraSmall_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.75"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "F16s_Flex": {"location": "westus2", "vm_size": "F16s_Flex", "capability": {"type": "requirement", "name": "westus2_F16s_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F16s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "274877906944"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F16_Flex": {"location": "westus2", "vm_size": "F16_Flex", "capability": {"type": "requirement", "name": "westus2_F16_Flex", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F16_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F2s_Flex": {"location": "westus2", "vm_size": "F2s_Flex", "capability": {"type": "requirement", "name": "westus2_F2s_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F2s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F2_Flex": {"location": "westus2", "vm_size": "F2_Flex", "capability": {"type": "requirement", "name": "westus2_F2_Flex", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F2_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "49152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F32s_Flex": {"location": "westus2", "vm_size": "F32s_Flex", "capability": {"type": "requirement", "name": "westus2_F32s_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F32s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "549755813888"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F32_Flex": {"location": "westus2", "vm_size": "F32_Flex", "capability": {"type": "requirement", "name": "westus2_F32_Flex", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F32_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F4s_Flex": {"location": "westus2", "vm_size": "F4s_Flex", "capability": {"type": "requirement", "name": "westus2_F4s_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F4s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F4_Flex": {"location": "westus2", "vm_size": "F4_Flex", "capability": {"type": "requirement", "name": "westus2_F4_Flex", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F4_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "98304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "F64s_Flex": {"location": "westus2", "vm_size": "F64s_Flex", "capability": {"type": "requirement", "name": "westus2_F64s_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F64s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F64_Flex": {"location": "westus2", "vm_size": "F64_Flex", "capability": {"type": "requirement", "name": "westus2_F64_Flex", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F64_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1572864"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1572864000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "786432000"}, {"name": "UncachedDiskIOPS", "value": "102400"}, {"name": "UncachedDiskBytesPerSecond", "value": "1536000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "F8s_Flex": {"location": "westus2", "vm_size": "F8s_Flex", "capability": {"type": "requirement", "name": "westus2_F8s_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F8s_Flex", "tier": "Standard", "size": "Flex", "family": "FSFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "F8_Flex": {"location": "westus2", "vm_size": "F8_Flex", "capability": {"type": "requirement", "name": "westus2_F8_Flex", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "F8_Flex", "tier": "Standard", "size": "Flex", "family": "FFlexFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "196608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "FCA_E16-10s_v3": {"location": "westus2", "vm_size": "FCA_E16-10s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E16-10s_v3", "is_default": false, "node_count": 1, "core_count": 10, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E16-10s_v3", "tier": "Standard", "size": "E16-10s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "10"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E16-12s_v3": {"location": "westus2", "vm_size": "FCA_E16-12s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E16-12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E16-12s_v3", "tier": "Standard", "size": "E16-12s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E16-14s_v3": {"location": "westus2", "vm_size": "FCA_E16-14s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E16-14s_v3", "is_default": false, "node_count": 1, "core_count": 14, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E16-14s_v3", "tier": "Standard", "size": "E16-14s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "14"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E32-24s_v3": {"location": "westus2", "vm_size": "FCA_E32-24s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E32-24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E32-24s_v3", "tier": "Standard", "size": "E32-24s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E32-26s_v3": {"location": "westus2", "vm_size": "FCA_E32-26s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E32-26s_v3", "is_default": false, "node_count": 1, "core_count": 26, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E32-26s_v3", "tier": "Standard", "size": "E32-26s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "26"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E32-28s_v3": {"location": "westus2", "vm_size": "FCA_E32-28s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E32-28s_v3", "is_default": false, "node_count": 1, "core_count": 28, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E32-28s_v3", "tier": "Standard", "size": "E32-28s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "28"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E64-52s_v3": {"location": "westus2", "vm_size": "FCA_E64-52s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E64-52s_v3", "is_default": false, "node_count": 1, "core_count": 52, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E64-52s_v3", "tier": "Standard", "size": "E64-52s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "52"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "FCA_E8-6s_v3": {"location": "westus2", "vm_size": "FCA_E8-6s_v3", "capability": {"type": "requirement", "name": "westus2_FCA_E8-6s_v3", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "FCA_E8-6s_v3", "tier": "Standard", "size": "E8-6s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E8s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Harvest_E2s_v3": {"location": "westus2", "vm_size": "Harvest_E2s_v3", "capability": {"type": "requirement", "name": "westus2_Harvest_E2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Harvest_E2s_v3", "tier": "Standard", "size": "E2s_v3", "family": "harvestESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Harvest_E4s_v3": {"location": "westus2", "vm_size": "Harvest_E4s_v3", "capability": {"type": "requirement", "name": "westus2_Harvest_E4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Harvest_E4s_v3", "tier": "Standard", "size": "E4s_v3", "family": "harvestESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Harvest_E8s_v3": {"location": "westus2", "vm_size": "Harvest_E8s_v3", "capability": {"type": "requirement", "name": "westus2_Harvest_E8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Harvest_E8s_v3", "tier": "Standard", "size": "E8s_v3", "family": "harvestESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_A1Web35_v2_Gen2": {"location": "westus2", "vm_size": "Internal_A1Web35_v2_Gen2", "capability": {"type": "requirement", "name": "westus2_Internal_A1Web35_v2_Gen2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_A1Web35_v2_Gen2", "tier": "Standard", "size": "A1Web35_v2_Gen2", "family": "internalAv2WebGen2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "35840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_A2Web45_v2_Gen2": {"location": "westus2", "vm_size": "Internal_A2Web45_v2_Gen2", "capability": {"type": "requirement", "name": "westus2_Internal_A2Web45_v2_Gen2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_A2Web45_v2_Gen2", "tier": "Standard", "size": "A2Web45_v2_Gen2", "family": "internalAv2WebGen2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "46080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_A4Web_v2_Gen2": {"location": "westus2", "vm_size": "Internal_A4Web_v2_Gen2", "capability": {"type": "requirement", "name": "westus2_Internal_A4Web_v2_Gen2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_A4Web_v2_Gen2", "tier": "Standard", "size": "A4Web_v2_Gen2", "family": "internalAv2WebGen2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_ACCGen8MMv2_64id": {"location": "westus2", "vm_size": "Internal_ACCGen8MMv2_64id", "capability": {"type": "requirement", "name": "westus2_Internal_ACCGen8MMv2_64id", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_ACCGen8MMv2_64id", "tier": "Standard", "size": "ACCGen8MMv2_64id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_ACCGen8MM_64id": {"location": "westus2", "vm_size": "Internal_ACCGen8MM_64id", "capability": {"type": "requirement", "name": "westus2_Internal_ACCGen8MM_64id", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_ACCGen8MM_64id", "tier": "Standard", "size": "ACCGen8MM_64id", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16ads_v5": {"location": "westus2", "vm_size": "Internal_D16ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16ads_v5", "tier": "Standard", "size": "D16ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16alds_v5": {"location": "westus2", "vm_size": "Internal_D16alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16alds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16alds_v5", "tier": "Standard", "size": "D16alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "274878000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16als_v5": {"location": "westus2", "vm_size": "Internal_D16als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16als_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16als_v5", "tier": "Standard", "size": "D16als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D16as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D16as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16as_v4_NoDwnclk", "tier": "Standard", "size": "D16as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16as_v5": {"location": "westus2", "vm_size": "Internal_D16as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16as_v5", "tier": "Standard", "size": "D16as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D16s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D16s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D16s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D16s_v3_NoDwnclk", "tier": "Standard", "size": "D16s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D2ads_v5": {"location": "westus2", "vm_size": "Internal_D2ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2ads_v5", "tier": "Standard", "size": "D2ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2alds_v5": {"location": "westus2", "vm_size": "Internal_D2alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2alds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2alds_v5", "tier": "Standard", "size": "D2alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2als_v5": {"location": "westus2", "vm_size": "Internal_D2als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2als_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2als_v5", "tier": "Standard", "size": "D2als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D2as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D2as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2as_v4_NoDwnclk", "tier": "Standard", "size": "D2as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2as_v5": {"location": "westus2", "vm_size": "Internal_D2as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2as_v5", "tier": "Standard", "size": "D2as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D2s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D2s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D2s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D2s_v3_NoDwnclk", "tier": "Standard", "size": "D2s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D32ads_v5": {"location": "westus2", "vm_size": "Internal_D32ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32ads_v5", "tier": "Standard", "size": "D32ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32alds_v5": {"location": "westus2", "vm_size": "Internal_D32alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32alds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32alds_v5", "tier": "Standard", "size": "D32alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "549756000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32als_v5": {"location": "westus2", "vm_size": "Internal_D32als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32als_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32als_v5", "tier": "Standard", "size": "D32als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D32as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D32as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32as_v4_NoDwnclk", "tier": "Standard", "size": "D32as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32as_v5": {"location": "westus2", "vm_size": "Internal_D32as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32as_v5", "tier": "Standard", "size": "D32as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D32s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D32s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D32s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D32s_v3_NoDwnclk", "tier": "Standard", "size": "D32s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48ads_v5": {"location": "westus2", "vm_size": "Internal_D48ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48ads_v5", "tier": "Standard", "size": "D48ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1288490000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48alds_v5": {"location": "westus2", "vm_size": "Internal_D48alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48alds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48alds_v5", "tier": "Standard", "size": "D48alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "824634000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48als_v5": {"location": "westus2", "vm_size": "Internal_D48als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48als_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48als_v5", "tier": "Standard", "size": "D48als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D48as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D48as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48as_v4_NoDwnclk", "tier": "Standard", "size": "D48as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1148000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48as_v5": {"location": "westus2", "vm_size": "Internal_D48as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48as_v5", "tier": "Standard", "size": "D48as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D48s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D48s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D48s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D48s_v3_NoDwnclk", "tier": "Standard", "size": "D48s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "786000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D4ads_v5": {"location": "westus2", "vm_size": "Internal_D4ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4ads_v5", "tier": "Standard", "size": "D4ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4alds_v5": {"location": "westus2", "vm_size": "Internal_D4alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4alds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4alds_v5", "tier": "Standard", "size": "D4alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4als_v5": {"location": "westus2", "vm_size": "Internal_D4als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4als_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4als_v5", "tier": "Standard", "size": "D4als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D4as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D4as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4as_v4_NoDwnclk", "tier": "Standard", "size": "D4as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "66000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "66000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4as_v5": {"location": "westus2", "vm_size": "Internal_D4as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4as_v5", "tier": "Standard", "size": "D4as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D4s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D4s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D4s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D4s_v3_NoDwnclk", "tier": "Standard", "size": "D4s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "66000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "66000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_D64ads_v5": {"location": "westus2", "vm_size": "Internal_D64ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64ads_v5", "tier": "Standard", "size": "D64ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64alds_v5": {"location": "westus2", "vm_size": "Internal_D64alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64alds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64alds_v5", "tier": "Standard", "size": "D64alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64als_v5": {"location": "westus2", "vm_size": "Internal_D64als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64als_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64als_v5", "tier": "Standard", "size": "D64als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D64as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D64as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64as_v4_NoDwnclk", "tier": "Standard", "size": "D64as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64as_v5": {"location": "westus2", "vm_size": "Internal_D64as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64as_v5", "tier": "Standard", "size": "D64as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D64s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D64s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D64s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D64s_v3_NoDwnclk", "tier": "Standard", "size": "D64s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D8ads_v5": {"location": "westus2", "vm_size": "Internal_D8ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8ads_v5", "tier": "Standard", "size": "D8ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8alds_v5": {"location": "westus2", "vm_size": "Internal_D8alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8alds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8alds_v5", "tier": "Standard", "size": "D8alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "137439000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8als_v5": {"location": "westus2", "vm_size": "Internal_D8als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8als_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8als_v5", "tier": "Standard", "size": "D8als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D8as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D8as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8as_v4_NoDwnclk", "tier": "Standard", "size": "D8as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8as_v5": {"location": "westus2", "vm_size": "Internal_D8as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8as_v5", "tier": "Standard", "size": "D8as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D8s_v3_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D8s_v3_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D8s_v3_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D8s_v3_NoDwnclk", "tier": "Standard", "size": "D8s_v3_NoDwnclk", "family": "InternalDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_D96ads_v5": {"location": "westus2", "vm_size": "Internal_D96ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96ads_v5", "tier": "Standard", "size": "D96ads_v5", "family": "internalDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96alds_v5": {"location": "westus2", "vm_size": "Internal_D96alds_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96alds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96alds_v5", "tier": "Standard", "size": "D96alds_v5", "family": "internalDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96als_v5": {"location": "westus2", "vm_size": "Internal_D96als_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96als_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96als_v5", "tier": "Standard", "size": "D96als_v5", "family": "internalDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96as_v4_NoDwnclk": {"location": "westus2", "vm_size": "Internal_D96as_v4_NoDwnclk", "capability": {"type": "requirement", "name": "westus2_Internal_D96as_v4_NoDwnclk", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96as_v4_NoDwnclk", "tier": "Standard", "size": "D96as_v4_NoDwnclk", "family": "InternalDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1049000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1049000000"}, {"name": "CachedDiskBytes", "value": "2576980377600"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_D96as_v5": {"location": "westus2", "vm_size": "Internal_D96as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_D96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_D96as_v5", "tier": "Standard", "size": "D96as_v5", "family": "internalDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E16ads_v5": {"location": "westus2", "vm_size": "Internal_E16ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E16ads_v5", "tier": "Standard", "size": "E16ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E16as_v5": {"location": "westus2", "vm_size": "Internal_E16as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E16as_v5", "tier": "Standard", "size": "E16as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E20ads_v5": {"location": "westus2", "vm_size": "Internal_E20ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E20ads_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E20ads_v5", "tier": "Standard", "size": "E20ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "327680000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "327680000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E20as_v5": {"location": "westus2", "vm_size": "Internal_E20as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E20as_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E20as_v5", "tier": "Standard", "size": "E20as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E2ads_v5": {"location": "westus2", "vm_size": "Internal_E2ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E2ads_v5", "tier": "Standard", "size": "E2ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E2as_v5": {"location": "westus2", "vm_size": "Internal_E2as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E2as_v5", "tier": "Standard", "size": "E2as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E32ads_v5": {"location": "westus2", "vm_size": "Internal_E32ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E32ads_v5", "tier": "Standard", "size": "E32ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E32as_v5": {"location": "westus2", "vm_size": "Internal_E32as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E32as_v5", "tier": "Standard", "size": "E32as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E48ads_v5": {"location": "westus2", "vm_size": "Internal_E48ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E48ads_v5", "tier": "Standard", "size": "E48ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1288490000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E48as_v5": {"location": "westus2", "vm_size": "Internal_E48as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E48as_v5", "tier": "Standard", "size": "E48as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E4ads_v5": {"location": "westus2", "vm_size": "Internal_E4ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E4ads_v5", "tier": "Standard", "size": "E4ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E4as_v5": {"location": "westus2", "vm_size": "Internal_E4as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E4as_v5", "tier": "Standard", "size": "E4as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_E64ads_v5": {"location": "westus2", "vm_size": "Internal_E64ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E64ads_v5", "tier": "Standard", "size": "E64ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E64as_v5": {"location": "westus2", "vm_size": "Internal_E64as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E64as_v5", "tier": "Standard", "size": "E64as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E8ads_v5": {"location": "westus2", "vm_size": "Internal_E8ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E8ads_v5", "tier": "Standard", "size": "E8ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_E8as_v5": {"location": "westus2", "vm_size": "Internal_E8as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E8as_v5", "tier": "Standard", "size": "E8as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_E96ads_v5": {"location": "westus2", "vm_size": "Internal_E96ads_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E96ads_v5", "tier": "Standard", "size": "E96ads_v5", "family": "internalEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_E96as_v5": {"location": "westus2", "vm_size": "Internal_E96as_v5", "capability": {"type": "requirement", "name": "westus2_Internal_E96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_E96as_v5", "tier": "Standard", "size": "E96as_v5", "family": "internalEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen7_IaaS_LI": {"location": "westus2", "vm_size": "Internal_Gen7_IaaS_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen7_IaaS_LI", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen7_IaaS_LI", "tier": "Standard", "size": "Gen7_IaaS_LI", "family": "internalLIG7SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_LM_32ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_LM_32ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_LM_32ds_LI", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_LM_32ds_LI", "tier": "Standard", "size": "Gen8_LM_32ds_LI", "family": "internalG8LMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "8000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "8000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865375000"}, {"name": "NvmeDiskSizeInMiB", "value": "2747139"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_LM_64ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_LM_64ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_LM_64ds_LI", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 327680, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_LM_64ds_LI", "tier": "Standard", "size": "Gen8_LM_64ds_LI", "family": "internalG8LMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "320"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "16000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "16000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1734800000"}, {"name": "NvmeDiskSizeInMiB", "value": "915713"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM2_128ids_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM2_128ids_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM2_128ids_LI", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM2_128ids_LI", "tier": "Standard", "size": "Gen8_MM2_128ids_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "6408689"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM2_32ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM2_32ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM2_32ds_LI", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM2_32ds_LI", "tier": "Standard", "size": "Gen8_MM2_32ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "866000000"}, {"name": "NvmeDiskSizeInMiB", "value": "2746581"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM2_64ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM2_64ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM2_64ds_LI", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 557056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM2_64ds_LI", "tier": "Standard", "size": "Gen8_MM2_64ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "544"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "320000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "320000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1736000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM_32ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM_32ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM_32ds_LI", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM_32ds_LI", "tier": "Standard", "size": "Gen8_MM_32ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "8000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "8000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865375000"}, {"name": "NvmeDiskSizeInMiB", "value": "6409990"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_Gen8_MM_96ds_LI": {"location": "westus2", "vm_size": "Internal_Gen8_MM_96ds_LI", "capability": {"type": "requirement", "name": "westus2_Internal_Gen8_MM_96ds_LI", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 425984, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_Gen8_MM_96ds_LI", "tier": "Standard", "size": "Gen8_MM_96ds_LI", "family": "internalG8MMLIFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "416"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "24000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2599600000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HHv2_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8HHv2_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HHv2_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HHv2_128iad", "tier": "Standard", "size": "GPGen8HHv2_128iad", "family": "internalG8HHV2AMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "20141601"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HHv2_128id": {"location": "westus2", "vm_size": "Internal_GPGen8HHv2_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HHv2_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HHv2_128id", "tier": "Standard", "size": "GPGen8HHv2_128id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "20141601"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HH_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8HH_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HH_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HH_128iad", "tier": "Standard", "size": "GPGen8HH_128iad", "family": "internalG8HHAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1020000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1020000000"}, {"name": "CachedDiskBytes", "value": "5859374"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HH_128id": {"location": "westus2", "vm_size": "Internal_GPGen8HH_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HH_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HH_128id", "tier": "Standard", "size": "GPGen8HH_128id", "family": "internalG8HHSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3870000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3870000000"}, {"name": "CachedDiskBytes", "value": "5859374"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8HH_128id_IaaS": {"location": "westus2", "vm_size": "Internal_GPGen8HH_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8HH_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8HH_128id_IaaS", "tier": "Standard", "size": "GPGen8HH_128id_IaaS", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LMv2_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8LMv2_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LMv2_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LMv2_128iad", "tier": "Standard", "size": "GPGen8LMv2_128iad", "family": "internalG8LMV2AMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "6408691"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LMv2_128id": {"location": "westus2", "vm_size": "Internal_GPGen8LMv2_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LMv2_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LMv2_128id", "tier": "Standard", "size": "GPGen8LMv2_128id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LM_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8LM_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LM_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LM_128iad", "tier": "Standard", "size": "GPGen8LM_128iad", "family": "internalG8LMAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3076170"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1020000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1020000000"}, {"name": "CachedDiskBytes", "value": "2050780"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LM_128id": {"location": "westus2", "vm_size": "Internal_GPGen8LM_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LM_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LM_128id", "tier": "Standard", "size": "GPGen8LM_128id", "family": "internalG8LMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3870000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3870000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8LM_128id_IaaS": {"location": "westus2", "vm_size": "Internal_GPGen8LM_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8LM_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8LM_128id_IaaS", "tier": "Standard", "size": "GPGen8LM_128id_IaaS", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MH_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8MH_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MH_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MH_128iad", "tier": "Standard", "size": "GPGen8MH_128iad", "family": "internalGPGen8MHAMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "537600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MH_64ad": {"location": "westus2", "vm_size": "Internal_GPGen8MH_64ad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MH_64ad", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 344064, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MH_64ad", "tier": "Standard", "size": "GPGen8MH_64ad", "family": "internalGPGen8MHAMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "268288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "336"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MMv2_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8MMv2_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MMv2_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MMv2_128iad", "tier": "Standard", "size": "GPGen8MMv2_128iad", "family": "internalG8MMV2AMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "6408691"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MMv2_128id": {"location": "westus2", "vm_size": "Internal_GPGen8MMv2_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MMv2_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MMv2_128id", "tier": "Standard", "size": "GPGen8MMv2_128id", "family": "internalGen8FV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MM_128iad": {"location": "westus2", "vm_size": "Internal_GPGen8MM_128iad", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MM_128iad", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MM_128iad", "tier": "Standard", "size": "GPGen8MM_128iad", "family": "internalG8MMAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3076170"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1020000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1020000000"}, {"name": "CachedDiskBytes", "value": "2050780"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MM_128id": {"location": "westus2", "vm_size": "Internal_GPGen8MM_128id", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MM_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MM_128id", "tier": "Standard", "size": "GPGen8MM_128id", "family": "internalG8MMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3870000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3870000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_GPGen8MM_128id_IaaS": {"location": "westus2", "vm_size": "Internal_GPGen8MM_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_GPGen8MM_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_GPGen8MM_128id_IaaS", "tier": "Standard", "size": "GPGen8MM_128id_IaaS", "family": "internalGen8FFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_L128is_v2": {"location": "westus2", "vm_size": "Internal_L128is_v2", "capability": {"type": "requirement", "name": "westus2_Internal_L128is_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 10, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 10, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_L128is_v2", "tier": "Standard", "size": "L128is_v2", "family": "internalLISv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "10"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5Cv2_128ids": {"location": "westus2", "vm_size": "Internal_NPG5Cv2_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5Cv2_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5Cv2_128ids", "tier": "Standard", "size": "NPG5Cv2_128ids", "family": "internalGen8NPIDFV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128d": {"location": "westus2", "vm_size": "Internal_NPG5C_128d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128d", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128d", "tier": "Standard", "size": "NPG5C_128d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5828608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "400000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128ds": {"location": "westus2", "vm_size": "Internal_NPG5C_128ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128ds", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128ds", "tier": "Standard", "size": "NPG5C_128ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5828608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "400000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128id": {"location": "westus2", "vm_size": "Internal_NPG5C_128id", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128id", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128id", "tier": "Standard", "size": "NPG5C_128id", "family": "internalSQLG8NPIDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128ids": {"location": "westus2", "vm_size": "Internal_NPG5C_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128ids", "tier": "Standard", "size": "NPG5C_128ids", "family": "internalSQLG8NPIDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128ids_IaaS": {"location": "westus2", "vm_size": "Internal_NPG5C_128ids_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128ids_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128ids_IaaS", "tier": "Standard", "size": "NPG5C_128ids_IaaS", "family": "internalGen8NPDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_128id_IaaS": {"location": "westus2", "vm_size": "Internal_NPG5C_128id_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_128id_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_128id_IaaS", "tier": "Standard", "size": "NPG5C_128id_IaaS", "family": "internalGen8NPDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_16d": {"location": "westus2", "vm_size": "Internal_NPG5C_16d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_16d", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 90112, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_16d", "tier": "Standard", "size": "NPG5C_16d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "824320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "88"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "382500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_16ds": {"location": "westus2", "vm_size": "Internal_NPG5C_16ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_16ds", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 90112, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_16ds", "tier": "Standard", "size": "NPG5C_16ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "824320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "88"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "402653184"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_24d": {"location": "westus2", "vm_size": "Internal_NPG5C_24d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_24d", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 135168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_24d", "tier": "Standard", "size": "NPG5C_24d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1236992"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "132"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "765000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_24ds": {"location": "westus2", "vm_size": "Internal_NPG5C_24ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_24ds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 135168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_24ds", "tier": "Standard", "size": "NPG5C_24ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1236992"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "132"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1207959552"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "603979776"}, {"name": "UncachedDiskIOPS", "value": "38400"}, {"name": "UncachedDiskBytesPerSecond", "value": "576000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_2d": {"location": "westus2", "vm_size": "Internal_NPG5C_2d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_2d", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_2d", "tier": "Standard", "size": "NPG5C_2d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "47812"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_2ds": {"location": "westus2", "vm_size": "Internal_NPG5C_2ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_2ds", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_2ds", "tier": "Standard", "size": "NPG5C_2ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_32d": {"location": "westus2", "vm_size": "Internal_NPG5C_32d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_32d", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_32d", "tier": "Standard", "size": "NPG5C_32d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1649664"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1147500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_32ds": {"location": "westus2", "vm_size": "Internal_NPG5C_32ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_32ds", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_32ds", "tier": "Standard", "size": "NPG5C_32ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1649664"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1610612736"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_40d": {"location": "westus2", "vm_size": "Internal_NPG5C_40d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_40d", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_40d", "tier": "Standard", "size": "NPG5C_40d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2062336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_40ds": {"location": "westus2", "vm_size": "Internal_NPG5C_40ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_40ds", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_40ds", "tier": "Standard", "size": "NPG5C_40ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2062336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2013265920"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1006632960"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "960000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_4d": {"location": "westus2", "vm_size": "Internal_NPG5C_4d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_4d", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_4d", "tier": "Standard", "size": "NPG5C_4d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "205824"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "95625"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_4ds": {"location": "westus2", "vm_size": "Internal_NPG5C_4ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_4ds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_4ds", "tier": "Standard", "size": "NPG5C_4ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "205824"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "201326592"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100663296"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPG5C_64d": {"location": "westus2", "vm_size": "Internal_NPG5C_64d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_64d", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_64d", "tier": "Standard", "size": "NPG5C_64d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3300352"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_64ds": {"location": "westus2", "vm_size": "Internal_NPG5C_64ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_64ds", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_64ds", "tier": "Standard", "size": "NPG5C_64ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3300352"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "256000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3221225472"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1610612736"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_80d": {"location": "westus2", "vm_size": "Internal_NPG5C_80d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_80d", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_80d", "tier": "Standard", "size": "NPG5C_80d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4124672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_80ds": {"location": "westus2", "vm_size": "Internal_NPG5C_80ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_80ds", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_80ds", "tier": "Standard", "size": "NPG5C_80ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4124672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "320000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4026531840"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2013265920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPG5C_8d": {"location": "westus2", "vm_size": "Internal_NPG5C_8d", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_8d", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 45056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_8d", "tier": "Standard", "size": "NPG5C_8d", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "411648"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "44"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191250"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_NPG5C_8ds": {"location": "westus2", "vm_size": "Internal_NPG5C_8ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPG5C_8ds", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 45056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPG5C_8ds", "tier": "Standard", "size": "NPG5C_8ds", "family": "internalSQLG8NPDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "411648"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "44"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "402653184"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "201326592"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_NPHHv2_128ids": {"location": "westus2", "vm_size": "Internal_NPHHv2_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPHHv2_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHHv2_128ids", "tier": "Standard", "size": "NPHHv2_128ids", "family": "internalGen8NPIDFV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "20141601"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_104ds": {"location": "westus2", "vm_size": "Internal_NPHH_104ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_104ds", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 745472, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_104ds", "tier": "Standard", "size": "NPHH_104ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "14057472"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "728"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_128ds": {"location": "westus2", "vm_size": "Internal_NPHH_128ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_128ds", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_128ds", "tier": "Standard", "size": "NPHH_128ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16081920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_128ids": {"location": "westus2", "vm_size": "Internal_NPHH_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_128ids", "tier": "Standard", "size": "NPHH_128ids", "family": "internalSQLG8NPIDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "CachedDiskBytes", "value": "5859374"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_128ids_IaaS": {"location": "westus2", "vm_size": "Internal_NPHH_128ids_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_128ids_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_128ids_IaaS", "tier": "Standard", "size": "NPHH_128ids_IaaS", "family": "internalGen8NPIDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8789062"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_16ds": {"location": "westus2", "vm_size": "Internal_NPHH_16ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_16ds", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_16ds", "tier": "Standard", "size": "NPHH_16ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2162688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "382500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_24ds": {"location": "westus2", "vm_size": "Internal_NPHH_24ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_24ds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 172032, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_24ds", "tier": "Standard", "size": "NPHH_24ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3244032"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "168"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "765000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_2ds": {"location": "westus2", "vm_size": "Internal_NPHH_2ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_2ds", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_2ds", "tier": "Standard", "size": "NPHH_2ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "270336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "47812"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPHH_32ds": {"location": "westus2", "vm_size": "Internal_NPHH_32ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_32ds", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_32ds", "tier": "Standard", "size": "NPHH_32ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4325376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1147500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_40ds": {"location": "westus2", "vm_size": "Internal_NPHH_40ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_40ds", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 286720, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_40ds", "tier": "Standard", "size": "NPHH_40ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5406720"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "280"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_48ds": {"location": "westus2", "vm_size": "Internal_NPHH_48ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_48ds", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 344064, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_48ds", "tier": "Standard", "size": "NPHH_48ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "6488064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "336"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_4ds": {"location": "westus2", "vm_size": "Internal_NPHH_4ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_4ds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_4ds", "tier": "Standard", "size": "NPHH_4ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "540672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "95625"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPHH_64ds": {"location": "westus2", "vm_size": "Internal_NPHH_64ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_64ds", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_64ds", "tier": "Standard", "size": "NPHH_64ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8650752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_80ds": {"location": "westus2", "vm_size": "Internal_NPHH_80ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_80ds", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 573440, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_80ds", "tier": "Standard", "size": "NPHH_80ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "10813440"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "560"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPHH_8ds": {"location": "westus2", "vm_size": "Internal_NPHH_8ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPHH_8ds", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPHH_8ds", "tier": "Standard", "size": "NPHH_8ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1081344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191250"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_NPMMv2_128ids": {"location": "westus2", "vm_size": "Internal_NPMMv2_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPMMv2_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMMv2_128ids", "tier": "Standard", "size": "NPMMv2_128ids", "family": "internalGen8NPIDFV2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324218"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_128ds": {"location": "westus2", "vm_size": "Internal_NPMM_128ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_128ds", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_128ds", "tier": "Standard", "size": "NPMM_128ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5828608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_128ids": {"location": "westus2", "vm_size": "Internal_NPMM_128ids", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_128ids", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_128ids", "tier": "Standard", "size": "NPMM_128ids", "family": "internalSQLG8NPIDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "620000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "CachedDiskBytes", "value": "2343748"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_128ids_IaaS": {"location": "westus2", "vm_size": "Internal_NPMM_128ids_IaaS", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_128ids_IaaS", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_128ids_IaaS", "tier": "Standard", "size": "NPMM_128ids_IaaS", "family": "internalGen8NPIDFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3515624"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_16ds": {"location": "westus2", "vm_size": "Internal_NPMM_16ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_16ds", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 121241, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_16ds", "tier": "Standard", "size": "NPMM_16ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1118208"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "118.4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "382500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_24ds": {"location": "westus2", "vm_size": "Internal_NPMM_24ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_24ds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 181862, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_24ds", "tier": "Standard", "size": "NPMM_24ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1677312"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "177.6"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "765000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_2ds": {"location": "westus2", "vm_size": "Internal_NPMM_2ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_2ds", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 15155, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_2ds", "tier": "Standard", "size": "NPMM_2ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "139264"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14.8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "47812"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPMM_32ds": {"location": "westus2", "vm_size": "Internal_NPMM_32ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_32ds", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 242483, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_32ds", "tier": "Standard", "size": "NPMM_32ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2236416"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "236.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1147500"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_40ds": {"location": "westus2", "vm_size": "Internal_NPMM_40ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_40ds", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 303104, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_40ds", "tier": "Standard", "size": "NPMM_40ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2795520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "296"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_4ds": {"location": "westus2", "vm_size": "Internal_NPMM_4ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_4ds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 30310, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_4ds", "tier": "Standard", "size": "NPMM_4ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "279552"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "29.6"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "95625"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Internal_NPMM_64ds": {"location": "westus2", "vm_size": "Internal_NPMM_64ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_64ds", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 484966, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_64ds", "tier": "Standard", "size": "NPMM_64ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4473856"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "473.6"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_80ds": {"location": "westus2", "vm_size": "Internal_NPMM_80ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_80ds", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 606208, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_80ds", "tier": "Standard", "size": "NPMM_80ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5592064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "592"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "615000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1195312"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_NPMM_8ds": {"location": "westus2", "vm_size": "Internal_NPMM_8ds", "capability": {"type": "requirement", "name": "westus2_Internal_NPMM_8ds", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 60620, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_NPMM_8ds", "tier": "Standard", "size": "NPMM_8ds", "family": "internalSQLG8NPDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "559104"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "59.2"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "191250"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Internal_SQLG6Test": {"location": "westus2", "vm_size": "Internal_SQLG6Test", "capability": {"type": "requirement", "name": "westus2_Internal_SQLG6Test", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_SQLG6Test", "tier": "Standard", "size": "SQLG6Test", "family": "standardSQLG6TestDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493162"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_SQLG6Test_Colocation": {"location": "westus2", "vm_size": "Internal_SQLG6Test_Colocation", "capability": {"type": "requirement", "name": "westus2_Internal_SQLG6Test_Colocation", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 86016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_SQLG6Test_Colocation", "tier": "Standard", "size": "SQLG6Test_Colocation", "family": "standardSQLG6TestFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "84"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T0s": {"location": "westus2", "vm_size": "Internal_T0s", "capability": {"type": "requirement", "name": "westus2_Internal_T0s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T0s", "tier": "Standard", "size": "T0s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663306"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T1s": {"location": "westus2", "vm_size": "Internal_T1s", "capability": {"type": "requirement", "name": "westus2_Internal_T1s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T1s", "tier": "Standard", "size": "T1s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663307"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T2s": {"location": "westus2", "vm_size": "Internal_T2s", "capability": {"type": "requirement", "name": "westus2_Internal_T2s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T2s", "tier": "Standard", "size": "T2s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663308"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T3s": {"location": "westus2", "vm_size": "Internal_T3s", "capability": {"type": "requirement", "name": "westus2_Internal_T3s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T3s", "tier": "Standard", "size": "T3s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663309"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T4s": {"location": "westus2", "vm_size": "Internal_T4s", "capability": {"type": "requirement", "name": "westus2_Internal_T4s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T4s", "tier": "Standard", "size": "T4s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663310"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Internal_T5s": {"location": "westus2", "vm_size": "Internal_T5s", "capability": {"type": "requirement", "name": "westus2_Internal_T5s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Internal_T5s", "tier": "Standard", "size": "T5s", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663311"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Large_Internal": {"location": "westus2", "vm_size": "Large_Internal", "capability": {"type": "requirement", "name": "westus2_Large_Internal", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Large_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "169984"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "MaxDisk_VM_2_64": {"location": "westus2", "vm_size": "MaxDisk_VM_2_64", "capability": {"type": "requirement", "name": "westus2_MaxDisk_VM_2_64", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "MaxDisk_VM_2_64", "tier": "Standard", "size": "VM_2_64", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "2000000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "MaxDisk_VM_4_64": {"location": "westus2", "vm_size": "MaxDisk_VM_4_64", "capability": {"type": "requirement", "name": "westus2_MaxDisk_VM_4_64", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "MaxDisk_VM_4_64", "tier": "Standard", "size": "VM_4_64", "family": "internalDTSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1100"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "2000000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Medium_Internal": {"location": "westus2", "vm_size": "Medium_Internal", "capability": {"type": "requirement", "name": "westus2_Medium_Internal", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Medium_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "501760"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Small_Internal": {"location": "westus2", "vm_size": "Small_Internal", "capability": {"type": "requirement", "name": "westus2_Small_Internal", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1792, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Small_Internal", "tier": "Standard", "size": "Internal", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "22528"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "1.75"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Special_D4_v2": {"location": "westus2", "vm_size": "Special_D4_v2", "capability": {"type": "requirement", "name": "westus2_Special_D4_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Special_D4_v2", "tier": "Standard", "size": "D4_v2", "family": "SpecialDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLDCGen6_2": {"location": "westus2", "vm_size": "SQLDCGen6_2", "capability": {"type": "requirement", "name": "westus2_SQLDCGen6_2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 49152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLDCGen6_2", "tier": "Standard", "size": "2", "family": "standardSQLDCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1716613"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "48"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "1"}], "restrictions": []}}, "SQLG4VM": {"location": "westus2", "vm_size": "SQLG4VM", "capability": {"type": "requirement", "name": "westus2_SQLG4VM", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 172032, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 5, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 5, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG4VM", "tier": "Standard", "size": "SQLG4VM", "family": "standardSQLG4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "168"}, {"name": "MaxDataDiskCount", "value": "5"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5": {"location": "westus2", "vm_size": "SQLG5", "capability": {"type": "requirement", "name": "westus2_SQLG5", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5", "tier": "Standard", "size": "SQLG5", "family": "standardSQLG5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5Core": {"location": "westus2", "vm_size": "SQLG5Core", "capability": {"type": "requirement", "name": "westus2_SQLG5Core", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 6, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 6, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5Core", "tier": "Standard", "size": "SQLG5Core", "family": "standardSQLG5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "6"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "SQLG5v2": {"location": "westus2", "vm_size": "SQLG5v2", "capability": {"type": "requirement", "name": "westus2_SQLG5v2", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5v2", "tier": "Standard", "size": "SQLG5v2", "family": "standardSQLG5V2SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_IaaS": {"location": "westus2", "vm_size": "SQLG5_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG5_IaaS", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_IaaS", "tier": "Standard", "size": "IaaS", "family": "standardSQLG5SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5_NP16": {"location": "westus2", "vm_size": "SQLG5_NP16", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 90112, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP16", "tier": "Standard", "size": "NP16", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "88"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP2": {"location": "westus2", "vm_size": "SQLG5_NP2", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP2", "tier": "Standard", "size": "NP2", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "74752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5_NP24": {"location": "westus2", "vm_size": "SQLG5_NP24", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 135168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP24", "tier": "Standard", "size": "NP24", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "132"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP32": {"location": "westus2", "vm_size": "SQLG5_NP32", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP32", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 180224, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP32", "tier": "Standard", "size": "NP32", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "176"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP4": {"location": "westus2", "vm_size": "SQLG5_NP4", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP4", "tier": "Standard", "size": "NP4", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "184320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "4"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG5_NP40": {"location": "westus2", "vm_size": "SQLG5_NP40", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP40", "tier": "Standard", "size": "NP40", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP64": {"location": "westus2", "vm_size": "SQLG5_NP64", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP64", "tier": "Standard", "size": "NP64", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3276800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP8": {"location": "westus2", "vm_size": "SQLG5_NP8", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 45056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP8", "tier": "Standard", "size": "NP8", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "404480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "44"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "SQLG5_NP80": {"location": "westus2", "vm_size": "SQLG5_NP80", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP80", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP80", "tier": "Standard", "size": "NP80", "family": "standardSQLG5NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG5_NP80s": {"location": "westus2", "vm_size": "SQLG5_NP80s", "capability": {"type": "requirement", "name": "westus2_SQLG5_NP80s", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG5_NP80s", "tier": "Standard", "size": "NP80s", "family": "standardSQLG5NPSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6": {"location": "westus2", "vm_size": "SQLG6", "capability": {"type": "requirement", "name": "westus2_SQLG6", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 5040005, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6", "tier": "Standard", "size": "SQLG6", "family": "standardSQLG6Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5760000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4921.88"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6v2": {"location": "westus2", "vm_size": "SQLG6v2", "capability": {"type": "requirement", "name": "westus2_SQLG6v2", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6v2", "tier": "Standard", "size": "SQLG6v2", "family": "standardSQLG6V2SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_IaaS": {"location": "westus2", "vm_size": "SQLG6_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG6_IaaS", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_IaaS", "tier": "Standard", "size": "IaaS", "family": "standardSQLG6SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP16": {"location": "westus2", "vm_size": "SQLG6_NP16", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 89292, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP16", "tier": "Standard", "size": "NP16", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "686080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "87.2"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP2": {"location": "westus2", "vm_size": "SQLG6_NP2", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP2", "tier": "Standard", "size": "NP2", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG6_NP24": {"location": "westus2", "vm_size": "SQLG6_NP24", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 133939, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP24", "tier": "Standard", "size": "NP24", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "130.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP32": {"location": "westus2", "vm_size": "SQLG6_NP32", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP32", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 178585, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP32", "tier": "Standard", "size": "NP32", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1433600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "174.4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP4": {"location": "westus2", "vm_size": "SQLG6_NP4", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP4", "tier": "Standard", "size": "NP4", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG6_NP40": {"location": "westus2", "vm_size": "SQLG6_NP40", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 223232, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP40", "tier": "Standard", "size": "NP40", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1740800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP56": {"location": "westus2", "vm_size": "SQLG6_NP56", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP56", "is_default": false, "node_count": 1, "core_count": 56, "memory_mb": 312524, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP56", "tier": "Standard", "size": "NP56", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2560000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "56"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "305.2"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "56"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP64": {"location": "westus2", "vm_size": "SQLG6_NP64", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 357171, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP64", "tier": "Standard", "size": "NP64", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2969600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "348.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP8": {"location": "westus2", "vm_size": "SQLG6_NP8", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 44646, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP8", "tier": "Standard", "size": "NP8", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "43.6"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "SQLG6_NP80": {"location": "westus2", "vm_size": "SQLG6_NP80", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP80", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 446464, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP80", "tier": "Standard", "size": "NP80", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "436"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP96": {"location": "westus2", "vm_size": "SQLG6_NP96", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP96", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP96", "tier": "Standard", "size": "NP96", "family": "standardSQLG6NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG6_NP96s": {"location": "westus2", "vm_size": "SQLG6_NP96s", "capability": {"type": "requirement", "name": "westus2_SQLG6_NP96s", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG6_NP96s", "tier": "Standard", "size": "NP96s", "family": "standardSQLG6NPSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7": {"location": "westus2", "vm_size": "SQLG7", "capability": {"type": "requirement", "name": "westus2_SQLG7", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7", "tier": "Standard", "size": "SQLG7", "family": "standardSQLG7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5853184"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7v2": {"location": "westus2", "vm_size": "SQLG7v2", "capability": {"type": "requirement", "name": "westus2_SQLG7v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7v2", "tier": "Standard", "size": "SQLG7v2", "family": "standardSQLG7V2SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7v2_AMD": {"location": "westus2", "vm_size": "SQLG7v2_AMD", "capability": {"type": "requirement", "name": "westus2_SQLG7v2_AMD", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7v2_AMD", "tier": "Standard", "size": "AMD", "family": "standardSQLG7V2AMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "446464"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "5493164"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_AMD": {"location": "westus2", "vm_size": "SQLG7_AMD", "capability": {"type": "requirement", "name": "westus2_SQLG7_AMD", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_AMD", "tier": "Standard", "size": "AMD", "family": "StandardSQLGen7AMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4718592"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_AMD_IaaS": {"location": "westus2", "vm_size": "SQLG7_AMD_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG7_AMD_IaaS", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_AMD_IaaS", "tier": "Standard", "size": "AMD_IaaS", "family": "standardSQLG7AMDFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1070000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1070000000"}, {"name": "CachedDiskBytes", "value": "19200000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1260000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_DCLK": {"location": "westus2", "vm_size": "SQLG7_DCLK", "capability": {"type": "requirement", "name": "westus2_SQLG7_DCLK", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_DCLK", "tier": "Standard", "size": "DCLK", "family": "standardSQLG7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5853184"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "104"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_IaaS": {"location": "westus2", "vm_size": "SQLG7_IaaS", "capability": {"type": "requirement", "name": "westus2_SQLG7_IaaS", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_IaaS", "tier": "Standard", "size": "IaaS", "family": "standardSQLG7SFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5439488"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP104": {"location": "westus2", "vm_size": "SQLG7_NP104", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP104", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP104", "tier": "Standard", "size": "NP104", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP104s": {"location": "westus2", "vm_size": "SQLG7_NP104s", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP104s", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP104s", "tier": "Standard", "size": "NP104s", "family": "standardSQLG7NPSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP16": {"location": "westus2", "vm_size": "SQLG7_NP16", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 89292, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP16", "tier": "Standard", "size": "NP16", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "686080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "87.2"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP2": {"location": "westus2", "vm_size": "SQLG7_NP2", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 11264, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP2", "tier": "Standard", "size": "NP2", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "11"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG7_NP24": {"location": "westus2", "vm_size": "SQLG7_NP24", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 133939, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP24", "tier": "Standard", "size": "NP24", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "130.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP32": {"location": "westus2", "vm_size": "SQLG7_NP32", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP32", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 178585, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP32", "tier": "Standard", "size": "NP32", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1433600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "174.4"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP4": {"location": "westus2", "vm_size": "SQLG7_NP4", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 22528, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP4", "tier": "Standard", "size": "NP4", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "22"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "SQLG7_NP40": {"location": "westus2", "vm_size": "SQLG7_NP40", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP40", "is_default": false, "node_count": 1, "core_count": 40, "memory_mb": 223232, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP40", "tier": "Standard", "size": "NP40", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1740800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "40"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "40"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP64": {"location": "westus2", "vm_size": "SQLG7_NP64", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 357171, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP64", "tier": "Standard", "size": "NP64", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2969600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "348.8"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP8": {"location": "westus2", "vm_size": "SQLG7_NP8", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 44646, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP8", "tier": "Standard", "size": "NP8", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "43.6"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "SQLG7_NP80": {"location": "westus2", "vm_size": "SQLG7_NP80", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP80", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 446464, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP80", "tier": "Standard", "size": "NP80", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "436"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLG7_NP96": {"location": "westus2", "vm_size": "SQLG7_NP96", "capability": {"type": "requirement", "name": "westus2_SQLG7_NP96", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLG7_NP96", "tier": "Standard", "size": "NP96", "family": "standardSQLG7NPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "SQLGM": {"location": "westus2", "vm_size": "SQLGM", "capability": {"type": "requirement", "name": "westus2_SQLGM", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 3840000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 6, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 6, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLGM", "tier": "Standard", "size": "SQLGM", "family": "standardSQLGMFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3750"}, {"name": "MaxDataDiskCount", "value": "6"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "SQLGZ": {"location": "westus2", "vm_size": "SQLGZ", "capability": {"type": "requirement", "name": "westus2_SQLGZ", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "SQLGZ", "tier": "Standard", "size": "SQLGZ", "family": "standardSQLGZFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A0": {"location": "westus2", "vm_size": "Standard_A0", "capability": {"type": "requirement", "name": "westus2_Standard_A0", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A0", "tier": "Standard", "size": "A0", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.75"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "50"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A1": {"location": "westus2", "vm_size": "Standard_A1", "capability": {"type": "requirement", "name": "westus2_Standard_A1", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1792, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1", "tier": "Standard", "size": "A1", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "71680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "1.75"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A1Web35_v2": {"location": "westus2", "vm_size": "Standard_A1Web35_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A1Web35_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1Web35_v2", "tier": "Standard", "size": "A1Web35_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "35840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A1Web_v2": {"location": "westus2", "vm_size": "Standard_A1Web_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A1Web_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1Web_v2", "tier": "Standard", "size": "A1Web_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "71680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A1_v2": {"location": "westus2", "vm_size": "Standard_A1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A1_v2", "tier": "Standard", "size": "A1_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "10240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "20971520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "10485760"}, {"name": "UncachedDiskIOPS", "value": "1600"}, {"name": "UncachedDiskBytesPerSecond", "value": "24000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_A2": {"location": "westus2", "vm_size": "Standard_A2", "capability": {"type": "requirement", "name": "westus2_Standard_A2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2", "tier": "Standard", "size": "A2", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "138240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A2m_v2": {"location": "westus2", "vm_size": "Standard_A2m_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2m_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2m_v2", "tier": "Standard", "size": "A2m_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_A2Web45_v2": {"location": "westus2", "vm_size": "Standard_A2Web45_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2Web45_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2Web45_v2", "tier": "Standard", "size": "A2Web45_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "46080"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A2Web_v2": {"location": "westus2", "vm_size": "Standard_A2Web_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2Web_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2Web_v2", "tier": "Standard", "size": "A2Web_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A2_v2": {"location": "westus2", "vm_size": "Standard_A2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A2_v2", "tier": "Standard", "size": "A2_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "20480"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_A3": {"location": "westus2", "vm_size": "Standard_A3", "capability": {"type": "requirement", "name": "westus2_Standard_A3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A3", "tier": "Standard", "size": "A3", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "291840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A4": {"location": "westus2", "vm_size": "Standard_A4", "capability": {"type": "requirement", "name": "westus2_Standard_A4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4", "tier": "Standard", "size": "A4", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "619520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A4m_v2": {"location": "westus2", "vm_size": "Standard_A4m_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A4m_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4m_v2", "tier": "Standard", "size": "A4m_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "40960"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_A4Web_v2": {"location": "westus2", "vm_size": "Standard_A4Web_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A4Web_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4Web_v2", "tier": "Standard", "size": "A4Web_v2", "family": "standardAv2WebFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_A4_v2": {"location": "westus2", "vm_size": "Standard_A4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A4_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A4_v2", "tier": "Standard", "size": "A4_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "40960"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_A5": {"location": "westus2", "vm_size": "Standard_A5", "capability": {"type": "requirement", "name": "westus2_Standard_A5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A5", "tier": "Standard", "size": "A5", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "138240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "41943040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A6": {"location": "westus2", "vm_size": "Standard_A6", "capability": {"type": "requirement", "name": "westus2_Standard_A6", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A6", "tier": "Standard", "size": "A6", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "291840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "41943040"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A7": {"location": "westus2", "vm_size": "Standard_A7", "capability": {"type": "requirement", "name": "westus2_Standard_A7", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A7", "tier": "Standard", "size": "A7", "family": "standardA0_A7Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": [], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "619520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_A8m_v2": {"location": "westus2", "vm_size": "Standard_A8m_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A8m_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A8m_v2", "tier": "Standard", "size": "A8m_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_A8_v2": {"location": "westus2", "vm_size": "Standard_A8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_A8_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_A8_v2", "tier": "Standard", "size": "A8_v2", "family": "standardAv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "100"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_Akv112v1_G3": {"location": "westus2", "vm_size": "Standard_Akv112v1_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv112v1_G3", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 200704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv112v1_G3", "tier": "Standard", "size": "Akv112v1_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "196"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_Akv112v2_G3": {"location": "westus2", "vm_size": "Standard_Akv112v2_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv112v2_G3", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 200704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv112v2_G3", "tier": "Standard", "size": "Akv112v2_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "196"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_Akv16v1_G3": {"location": "westus2", "vm_size": "Standard_Akv16v1_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv16v1_G3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv16v1_G3", "tier": "Standard", "size": "Akv16v1_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_Akv64v1_G3": {"location": "westus2", "vm_size": "Standard_Akv64v1_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv64v1_G3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv64v1_G3", "tier": "Standard", "size": "Akv64v1_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_Akv64v2_G3": {"location": "westus2", "vm_size": "Standard_Akv64v2_G3", "capability": {"type": "requirement", "name": "westus2_Standard_Akv64v2_G3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_Akv64v2_G3", "tier": "Standard", "size": "Akv64v2_G3", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_AKV8": {"location": "westus2", "vm_size": "Standard_AKV8", "capability": {"type": "requirement", "name": "westus2_Standard_AKV8", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_AKV8", "tier": "Standard", "size": "AKV8", "family": "standardAKVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3051760"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_B12ms": {"location": "westus2", "vm_size": "Standard_B12ms", "capability": {"type": "requirement", "name": "westus2_Standard_B12ms", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 49152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 6, "max_inclusive": true}, "max_nic_count": 6}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B12ms", "tier": "Standard", "size": "B12ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "98304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "48"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6480"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "74956800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "74956800"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "50000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "6"}], "restrictions": []}}, "Standard_B16als_v2": {"location": "westus2", "vm_size": "Standard_B16als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16als_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16als_v2", "tier": "Standard", "size": "B16als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16as_v2": {"location": "westus2", "vm_size": "Standard_B16as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16as_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16as_v2", "tier": "Standard", "size": "B16as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16ls_v2": {"location": "westus2", "vm_size": "Standard_B16ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16ls_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16ls_v2", "tier": "Standard", "size": "B16ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16ms": {"location": "westus2", "vm_size": "Standard_B16ms", "capability": {"type": "requirement", "name": "westus2_Standard_B16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16ms", "tier": "Standard", "size": "B16ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8640"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "52428800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_B16pls_v2": {"location": "westus2", "vm_size": "Standard_B16pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16pls_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16pls_v2", "tier": "Standard", "size": "B16pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "25600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "629145600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "629145600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16ps_v2": {"location": "westus2", "vm_size": "Standard_B16ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16ps_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16ps_v2", "tier": "Standard", "size": "B16ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "25600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "629145600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "629145600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B16s_v2": {"location": "westus2", "vm_size": "Standard_B16s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B16s_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B16s_v2", "tier": "Standard", "size": "B16s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B1ls": {"location": "westus2", "vm_size": "Standard_B1ls", "capability": {"type": "requirement", "name": "westus2_Standard_B1ls", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 512, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B1ls", "tier": "Standard", "size": "B1ls", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "0.5"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "200"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "320"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B1ms": {"location": "westus2", "vm_size": "Standard_B1ms", "capability": {"type": "requirement", "name": "westus2_Standard_B1ms", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B1ms", "tier": "Standard", "size": "B1ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "640"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B1s": {"location": "westus2", "vm_size": "Standard_B1s", "capability": {"type": "requirement", "name": "westus2_Standard_B1s", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B1s", "tier": "Standard", "size": "B1s", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "320"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B20ms": {"location": "westus2", "vm_size": "Standard_B20ms", "capability": {"type": "requirement", "name": "westus2_Standard_B20ms", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 81920, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B20ms", "tier": "Standard", "size": "B20ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "80"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "52428800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_B2als_v2": {"location": "westus2", "vm_size": "Standard_B2als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2als_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2als_v2", "tier": "Standard", "size": "B2als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2as_v2": {"location": "westus2", "vm_size": "Standard_B2as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2as_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2as_v2", "tier": "Standard", "size": "B2as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ats_v2": {"location": "westus2", "vm_size": "Standard_B2ats_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ats_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ats_v2", "tier": "Standard", "size": "B2ats_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2hms": {"location": "westus2", "vm_size": "Standard_B2hms", "capability": {"type": "requirement", "name": "westus2_Standard_B2hms", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2hms", "tier": "Standard", "size": "B2hms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "23592960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "23592960"}, {"name": "UncachedDiskIOPS", "value": "1920"}, {"name": "UncachedDiskBytesPerSecond", "value": "23592960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_B2ls_v2": {"location": "westus2", "vm_size": "Standard_B2ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ls_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ls_v2", "tier": "Standard", "size": "B2ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ms": {"location": "westus2", "vm_size": "Standard_B2ms", "capability": {"type": "requirement", "name": "westus2_Standard_B2ms", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ms", "tier": "Standard", "size": "B2ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "2400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "23592960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "23592960"}, {"name": "UncachedDiskIOPS", "value": "1920"}, {"name": "UncachedDiskBytesPerSecond", "value": "23592960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B2pls_v2": {"location": "westus2", "vm_size": "Standard_B2pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2pls_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2pls_v2", "tier": "Standard", "size": "B2pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "89128960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "89128960"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ps_v2": {"location": "westus2", "vm_size": "Standard_B2ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ps_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ps_v2", "tier": "Standard", "size": "B2ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "89128960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "89128960"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2pts_v2": {"location": "westus2", "vm_size": "Standard_B2pts_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2pts_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2pts_v2", "tier": "Standard", "size": "B2pts_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "89128960"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "89128960"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2s": {"location": "westus2", "vm_size": "Standard_B2s", "capability": {"type": "requirement", "name": "westus2_Standard_B2s", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2s", "tier": "Standard", "size": "B2s", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "22528000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "22528000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "1280"}, {"name": "UncachedDiskBytesPerSecond", "value": "22500000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B2s_v2": {"location": "westus2", "vm_size": "Standard_B2s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2s_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2s_v2", "tier": "Standard", "size": "B2s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B2ts_v2": {"location": "westus2", "vm_size": "Standard_B2ts_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B2ts_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 1024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B2ts_v2", "tier": "Standard", "size": "B2ts_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B32als_v2": {"location": "westus2", "vm_size": "Standard_B32als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32als_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32als_v2", "tier": "Standard", "size": "B32als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B32as_v2": {"location": "westus2", "vm_size": "Standard_B32as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32as_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32as_v2", "tier": "Standard", "size": "B32as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B32ls_v2": {"location": "westus2", "vm_size": "Standard_B32ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32ls_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32ls_v2", "tier": "Standard", "size": "B32ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B32s_v2": {"location": "westus2", "vm_size": "Standard_B32s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B32s_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B32s_v2", "tier": "Standard", "size": "B32s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B4als_v2": {"location": "westus2", "vm_size": "Standard_B4als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4als_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4als_v2", "tier": "Standard", "size": "B4als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B4as_v2": {"location": "westus2", "vm_size": "Standard_B4as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4as_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4as_v2", "tier": "Standard", "size": "B4as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B4hms": {"location": "westus2", "vm_size": "Standard_B4hms", "capability": {"type": "requirement", "name": "westus2_Standard_B4hms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4hms", "tier": "Standard", "size": "B4hms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "36700160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "36700160"}, {"name": "UncachedDiskIOPS", "value": "2880"}, {"name": "UncachedDiskBytesPerSecond", "value": "36700160"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_B4ls_v2": {"location": "westus2", "vm_size": "Standard_B4ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4ls_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4ls_v2", "tier": "Standard", "size": "B4ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B4ms": {"location": "westus2", "vm_size": "Standard_B4ms", "capability": {"type": "requirement", "name": "westus2_Standard_B4ms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4ms", "tier": "Standard", "size": "B4ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3600"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "36700160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "36700160"}, {"name": "UncachedDiskIOPS", "value": "2880"}, {"name": "UncachedDiskBytesPerSecond", "value": "36700160"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B4pls_v2": {"location": "westus2", "vm_size": "Standard_B4pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4pls_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4pls_v2", "tier": "Standard", "size": "B4pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "152043520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "152043520"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B4ps_v2": {"location": "westus2", "vm_size": "Standard_B4ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4ps_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4ps_v2", "tier": "Standard", "size": "B4ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6400"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "152043520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "152043520"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B4s_v2": {"location": "westus2", "vm_size": "Standard_B4s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B4s_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 3, "max_inclusive": true}, "max_nic_count": 3}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B4s_v2", "tier": "Standard", "size": "B4s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_B8als_v2": {"location": "westus2", "vm_size": "Standard_B8als_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8als_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8als_v2", "tier": "Standard", "size": "B8als_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8as_v2": {"location": "westus2", "vm_size": "Standard_B8as_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8as_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8as_v2", "tier": "Standard", "size": "B8as_v2", "family": "standardBasv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8ls_v2": {"location": "westus2", "vm_size": "Standard_B8ls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8ls_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8ls_v2", "tier": "Standard", "size": "B8ls_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8ms": {"location": "westus2", "vm_size": "Standard_B8ms", "capability": {"type": "requirement", "name": "westus2_Standard_B8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8ms", "tier": "Standard", "size": "B8ms", "family": "standardBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "52428800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "52428800"}, {"name": "UncachedDiskIOPS", "value": "4320"}, {"name": "UncachedDiskBytesPerSecond", "value": "52428800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_B8pls_v2": {"location": "westus2", "vm_size": "Standard_B8pls_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8pls_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8pls_v2", "tier": "Standard", "size": "B8pls_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "304087040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "304087040"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B8ps_v2": {"location": "westus2", "vm_size": "Standard_B8ps_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8ps_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8ps_v2", "tier": "Standard", "size": "B8ps_v2", "family": "standardBpsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12800"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "304087040"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "304087040"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_B8s_v2": {"location": "westus2", "vm_size": "Standard_B8s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_B8s_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_B8s_v2", "tier": "Standard", "size": "B8s_v2", "family": "standardBsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D11_v2": {"location": "westus2", "vm_size": "Standard_D11_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D11_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D11_v2", "tier": "Standard", "size": "D11_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D11_v2_Internal": {"location": "westus2", "vm_size": "Standard_D11_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D11_v2_Internal", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D11_v2_Internal", "tier": "Standard", "size": "D11_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D11_v2_Promo": {"location": "westus2", "vm_size": "Standard_D11_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D11_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D11_v2_Promo", "tier": "Standard", "size": "D11_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D12_v2": {"location": "westus2", "vm_size": "Standard_D12_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D12_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D12_v2", "tier": "Standard", "size": "D12_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D12_v2_Internal": {"location": "westus2", "vm_size": "Standard_D12_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D12_v2_Internal", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D12_v2_Internal", "tier": "Standard", "size": "D12_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D12_v2_Promo": {"location": "westus2", "vm_size": "Standard_D12_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D12_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D12_v2_Promo", "tier": "Standard", "size": "D12_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D13_v2": {"location": "westus2", "vm_size": "Standard_D13_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D13_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D13_v2", "tier": "Standard", "size": "D13_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D13_v2_Internal": {"location": "westus2", "vm_size": "Standard_D13_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D13_v2_Internal", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D13_v2_Internal", "tier": "Standard", "size": "D13_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D13_v2_Promo": {"location": "westus2", "vm_size": "Standard_D13_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D13_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D13_v2_Promo", "tier": "Standard", "size": "D13_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D14_v2": {"location": "westus2", "vm_size": "Standard_D14_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D14_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D14_v2", "tier": "Standard", "size": "D14_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D14_v2_Internal": {"location": "westus2", "vm_size": "Standard_D14_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D14_v2_Internal", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D14_v2_Internal", "tier": "Standard", "size": "D14_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D14_v2_Promo": {"location": "westus2", "vm_size": "Standard_D14_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D14_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D14_v2_Promo", "tier": "Standard", "size": "D14_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D15i_v2": {"location": "westus2", "vm_size": "Standard_D15i_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D15i_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D15i_v2", "tier": "Standard", "size": "D15i_v2", "family": "standardDIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "60000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "982515712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "490733568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D15_v2": {"location": "westus2", "vm_size": "Standard_D15_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D15_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D15_v2", "tier": "Standard", "size": "D15_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "60000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "982515712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "490733568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ads_v5": {"location": "westus2", "vm_size": "Standard_D16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ads_v5", "tier": "Standard", "size": "D16ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16alds_v5": {"location": "westus2", "vm_size": "Standard_D16alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16alds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16alds_v5", "tier": "Standard", "size": "D16alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "274878000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16als_v5": {"location": "westus2", "vm_size": "Standard_D16als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16als_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16als_v5", "tier": "Standard", "size": "D16als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16as_v4": {"location": "westus2", "vm_size": "Standard_D16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16as_v4", "tier": "Standard", "size": "D16as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16as_v5": {"location": "westus2", "vm_size": "Standard_D16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16as_v5", "tier": "Standard", "size": "D16as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D16as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D16as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16as_v5_Promo", "tier": "Standard", "size": "D16as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16a_v4": {"location": "westus2", "vm_size": "Standard_D16a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16a_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16a_v4", "tier": "Standard", "size": "D16a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16darm_V3": {"location": "westus2", "vm_size": "Standard_D16darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D16darm_V3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16darm_V3", "tier": "Standard", "size": "D16darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "CachedDiskBytes", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ds_v4": {"location": "westus2", "vm_size": "Standard_D16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ds_v4", "tier": "Standard", "size": "D16ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ds_v5": {"location": "westus2", "vm_size": "Standard_D16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ds_v5", "tier": "Standard", "size": "D16ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16d_v4": {"location": "westus2", "vm_size": "Standard_D16d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16d_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16d_v4", "tier": "Standard", "size": "D16d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "483393536"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16d_v5": {"location": "westus2", "vm_size": "Standard_D16d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16d_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16d_v5", "tier": "Standard", "size": "D16d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16lds_v5": {"location": "westus2", "vm_size": "Standard_D16lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16lds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16lds_v5", "tier": "Standard", "size": "D16lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16ls_v5": {"location": "westus2", "vm_size": "Standard_D16ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ls_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ls_v5", "tier": "Standard", "size": "D16ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16pds_v5": {"location": "westus2", "vm_size": "Standard_D16pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16pds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16pds_v5", "tier": "Standard", "size": "D16pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16plds_v5": {"location": "westus2", "vm_size": "Standard_D16plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16plds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16plds_v5", "tier": "Standard", "size": "D16plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16pls_v5": {"location": "westus2", "vm_size": "Standard_D16pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16pls_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16pls_v5", "tier": "Standard", "size": "D16pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16ps_v5": {"location": "westus2", "vm_size": "Standard_D16ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16ps_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16ps_v5", "tier": "Standard", "size": "D16ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D16s_v3": {"location": "westus2", "vm_size": "Standard_D16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16s_v3", "tier": "Standard", "size": "D16s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16s_v4": {"location": "westus2", "vm_size": "Standard_D16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16s_v4", "tier": "Standard", "size": "D16s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16s_v5": {"location": "westus2", "vm_size": "Standard_D16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16s_v5", "tier": "Standard", "size": "D16s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16_v3": {"location": "westus2", "vm_size": "Standard_D16_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D16_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16_v3", "tier": "Standard", "size": "D16_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16_v4": {"location": "westus2", "vm_size": "Standard_D16_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D16_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16_v4", "tier": "Standard", "size": "D16_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D16_v5": {"location": "westus2", "vm_size": "Standard_D16_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D16_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D16_v5", "tier": "Standard", "size": "D16_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D1_v2": {"location": "westus2", "vm_size": "Standard_D1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D1_v2", "tier": "Standard", "size": "D1_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "48234496"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24117248"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D1_v2_Internal": {"location": "westus2", "vm_size": "Standard_D1_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D1_v2_Internal", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D1_v2_Internal", "tier": "Standard", "size": "D1_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D2ads_v5": {"location": "westus2", "vm_size": "Standard_D2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ads_v5", "tier": "Standard", "size": "D2ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "82000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ahs_v4": {"location": "westus2", "vm_size": "Standard_D2ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2ahs_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ahs_v4", "tier": "Standard", "size": "D2ahs_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2alds_v5": {"location": "westus2", "vm_size": "Standard_D2alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2alds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2alds_v5", "tier": "Standard", "size": "D2alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "82000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2als_v5": {"location": "westus2", "vm_size": "Standard_D2als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2als_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2als_v5", "tier": "Standard", "size": "D2als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "82000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2as_v4": {"location": "westus2", "vm_size": "Standard_D2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2as_v4", "tier": "Standard", "size": "D2as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2as_v5": {"location": "westus2", "vm_size": "Standard_D2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2as_v5", "tier": "Standard", "size": "D2as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85983232"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D2as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D2as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2as_v5_Promo", "tier": "Standard", "size": "D2as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2a_v4": {"location": "westus2", "vm_size": "Standard_D2a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2a_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2a_v4", "tier": "Standard", "size": "D2a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "50331648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "25165824"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2darm_V3": {"location": "westus2", "vm_size": "Standard_D2darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D2darm_V3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2darm_V3", "tier": "Standard", "size": "D2darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120000000"}, {"name": "CachedDiskBytes", "value": "100000000"}, {"name": "UncachedDiskIOPS", "value": "3000"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ds_v4": {"location": "westus2", "vm_size": "Standard_D2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ds_v4", "tier": "Standard", "size": "D2ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_D2ds_v5": {"location": "westus2", "vm_size": "Standard_D2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ds_v5", "tier": "Standard", "size": "D2ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2d_v4": {"location": "westus2", "vm_size": "Standard_D2d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2d_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2d_v4", "tier": "Standard", "size": "D2d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2d_v5": {"location": "westus2", "vm_size": "Standard_D2d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2d_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2d_v5", "tier": "Standard", "size": "D2d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2hs_v3": {"location": "westus2", "vm_size": "Standard_D2hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D2hs_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2hs_v3", "tier": "Standard", "size": "D2hs_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2lds_v5": {"location": "westus2", "vm_size": "Standard_D2lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2lds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2lds_v5", "tier": "Standard", "size": "D2lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ls_v5": {"location": "westus2", "vm_size": "Standard_D2ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ls_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ls_v5", "tier": "Standard", "size": "D2ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2pds_v5": {"location": "westus2", "vm_size": "Standard_D2pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2pds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2pds_v5", "tier": "Standard", "size": "D2pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2plds_v5": {"location": "westus2", "vm_size": "Standard_D2plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2plds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2plds_v5", "tier": "Standard", "size": "D2plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2pls_v5": {"location": "westus2", "vm_size": "Standard_D2pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2pls_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2pls_v5", "tier": "Standard", "size": "D2pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2ps_v5": {"location": "westus2", "vm_size": "Standard_D2ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2ps_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2ps_v5", "tier": "Standard", "size": "D2ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2s_v3": {"location": "westus2", "vm_size": "Standard_D2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2s_v3", "tier": "Standard", "size": "D2s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2s_v4": {"location": "westus2", "vm_size": "Standard_D2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2s_v4", "tier": "Standard", "size": "D2s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_D2s_v5": {"location": "westus2", "vm_size": "Standard_D2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2s_v5", "tier": "Standard", "size": "D2s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2_v2": {"location": "westus2", "vm_size": "Standard_D2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v2", "tier": "Standard", "size": "D2_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2_v2_Internal": {"location": "westus2", "vm_size": "Standard_D2_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v2_Internal", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v2_Internal", "tier": "Standard", "size": "D2_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D2_v2_Promo": {"location": "westus2", "vm_size": "Standard_D2_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v2_Promo", "tier": "Standard", "size": "D2_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D2_v3": {"location": "westus2", "vm_size": "Standard_D2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v3", "tier": "Standard", "size": "D2_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "48234496"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24117248"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D2_v4": {"location": "westus2", "vm_size": "Standard_D2_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v4", "tier": "Standard", "size": "D2_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "3"}], "restrictions": []}}, "Standard_D2_v5": {"location": "westus2", "vm_size": "Standard_D2_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D2_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D2_v5", "tier": "Standard", "size": "D2_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D32-16s_v3": {"location": "westus2", "vm_size": "Standard_D32-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32-16s_v3", "tier": "Standard", "size": "D32-16s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32-8s_v3": {"location": "westus2", "vm_size": "Standard_D32-8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32-8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32-8s_v3", "tier": "Standard", "size": "D32-8s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ads_v5": {"location": "westus2", "vm_size": "Standard_D32ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ads_v5", "tier": "Standard", "size": "D32ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32alds_v5": {"location": "westus2", "vm_size": "Standard_D32alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32alds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32alds_v5", "tier": "Standard", "size": "D32alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "549756000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32als_v5": {"location": "westus2", "vm_size": "Standard_D32als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32als_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32als_v5", "tier": "Standard", "size": "D32als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32as_v4": {"location": "westus2", "vm_size": "Standard_D32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32as_v4", "tier": "Standard", "size": "D32as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32as_v5": {"location": "westus2", "vm_size": "Standard_D32as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32as_v5", "tier": "Standard", "size": "D32as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D32as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D32as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32as_v5_Promo", "tier": "Standard", "size": "D32as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32a_v4": {"location": "westus2", "vm_size": "Standard_D32a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32a_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32a_v4", "tier": "Standard", "size": "D32a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32darm_V3": {"location": "westus2", "vm_size": "Standard_D32darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D32darm_V3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32darm_V3", "tier": "Standard", "size": "D32darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3080000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "CachedDiskBytes", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ds_v4": {"location": "westus2", "vm_size": "Standard_D32ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32ds_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ds_v4", "tier": "Standard", "size": "D32ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ds_v5": {"location": "westus2", "vm_size": "Standard_D32ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ds_v5", "tier": "Standard", "size": "D32ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32d_v4": {"location": "westus2", "vm_size": "Standard_D32d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32d_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32d_v4", "tier": "Standard", "size": "D32d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32d_v5": {"location": "westus2", "vm_size": "Standard_D32d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32d_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32d_v5", "tier": "Standard", "size": "D32d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32lds_v5": {"location": "westus2", "vm_size": "Standard_D32lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32lds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32lds_v5", "tier": "Standard", "size": "D32lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ls_v5": {"location": "westus2", "vm_size": "Standard_D32ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ls_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ls_v5", "tier": "Standard", "size": "D32ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32pds_v5": {"location": "westus2", "vm_size": "Standard_D32pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32pds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32pds_v5", "tier": "Standard", "size": "D32pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32plds_v5": {"location": "westus2", "vm_size": "Standard_D32plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32plds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32plds_v5", "tier": "Standard", "size": "D32plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32pls_v5": {"location": "westus2", "vm_size": "Standard_D32pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32pls_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32pls_v5", "tier": "Standard", "size": "D32pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32ps_v5": {"location": "westus2", "vm_size": "Standard_D32ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32ps_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32ps_v5", "tier": "Standard", "size": "D32ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32s_v3": {"location": "westus2", "vm_size": "Standard_D32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32s_v3", "tier": "Standard", "size": "D32s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32s_v4": {"location": "westus2", "vm_size": "Standard_D32s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32s_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32s_v4", "tier": "Standard", "size": "D32s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32s_v5": {"location": "westus2", "vm_size": "Standard_D32s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32s_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32s_v5", "tier": "Standard", "size": "D32s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32_v3": {"location": "westus2", "vm_size": "Standard_D32_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D32_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32_v3", "tier": "Standard", "size": "D32_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32_v4": {"location": "westus2", "vm_size": "Standard_D32_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D32_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32_v4", "tier": "Standard", "size": "D32_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D32_v5": {"location": "westus2", "vm_size": "Standard_D32_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D32_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D32_v5", "tier": "Standard", "size": "D32_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D3_v2": {"location": "westus2", "vm_size": "Standard_D3_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D3_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D3_v2", "tier": "Standard", "size": "D3_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D3_v2_Internal": {"location": "westus2", "vm_size": "Standard_D3_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D3_v2_Internal", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D3_v2_Internal", "tier": "Standard", "size": "D3_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D3_v2_Promo": {"location": "westus2", "vm_size": "Standard_D3_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D3_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D3_v2_Promo", "tier": "Standard", "size": "D3_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D48ads_v5": {"location": "westus2", "vm_size": "Standard_D48ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ads_v5", "tier": "Standard", "size": "D48ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48alds_v5": {"location": "westus2", "vm_size": "Standard_D48alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48alds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48alds_v5", "tier": "Standard", "size": "D48alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "824634000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48als_v5": {"location": "westus2", "vm_size": "Standard_D48als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48als_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48als_v5", "tier": "Standard", "size": "D48als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48as_v4": {"location": "westus2", "vm_size": "Standard_D48as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48as_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48as_v4", "tier": "Standard", "size": "D48as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48as_v5": {"location": "westus2", "vm_size": "Standard_D48as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48as_v5", "tier": "Standard", "size": "D48as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D48as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D48as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48as_v5_Promo", "tier": "Standard", "size": "D48as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48a_v4": {"location": "westus2", "vm_size": "Standard_D48a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48a_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48a_v4", "tier": "Standard", "size": "D48a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48darm_V3": {"location": "westus2", "vm_size": "Standard_D48darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D48darm_V3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48darm_V3", "tier": "Standard", "size": "D48darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1200000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ds_v4": {"location": "westus2", "vm_size": "Standard_D48ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48ds_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ds_v4", "tier": "Standard", "size": "D48ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ds_v5": {"location": "westus2", "vm_size": "Standard_D48ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ds_v5", "tier": "Standard", "size": "D48ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48d_v4": {"location": "westus2", "vm_size": "Standard_D48d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48d_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48d_v4", "tier": "Standard", "size": "D48d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48d_v5": {"location": "westus2", "vm_size": "Standard_D48d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48d_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48d_v5", "tier": "Standard", "size": "D48d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48lds_v5": {"location": "westus2", "vm_size": "Standard_D48lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48lds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48lds_v5", "tier": "Standard", "size": "D48lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ls_v5": {"location": "westus2", "vm_size": "Standard_D48ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ls_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ls_v5", "tier": "Standard", "size": "D48ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48pds_v5": {"location": "westus2", "vm_size": "Standard_D48pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48pds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48pds_v5", "tier": "Standard", "size": "D48pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48plds_v5": {"location": "westus2", "vm_size": "Standard_D48plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48plds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48plds_v5", "tier": "Standard", "size": "D48plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48pls_v5": {"location": "westus2", "vm_size": "Standard_D48pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48pls_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48pls_v5", "tier": "Standard", "size": "D48pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48ps_v5": {"location": "westus2", "vm_size": "Standard_D48ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48ps_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48ps_v5", "tier": "Standard", "size": "D48ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48s_v3": {"location": "westus2", "vm_size": "Standard_D48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48s_v3", "tier": "Standard", "size": "D48s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48s_v4": {"location": "westus2", "vm_size": "Standard_D48s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48s_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48s_v4", "tier": "Standard", "size": "D48s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48s_v5": {"location": "westus2", "vm_size": "Standard_D48s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48s_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48s_v5", "tier": "Standard", "size": "D48s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48_v3": {"location": "westus2", "vm_size": "Standard_D48_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D48_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48_v3", "tier": "Standard", "size": "D48_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48_v4": {"location": "westus2", "vm_size": "Standard_D48_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D48_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48_v4", "tier": "Standard", "size": "D48_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D48_v5": {"location": "westus2", "vm_size": "Standard_D48_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D48_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D48_v5", "tier": "Standard", "size": "D48_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D4ads_v5": {"location": "westus2", "vm_size": "Standard_D4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ads_v5", "tier": "Standard", "size": "D4ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "144000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ahs_v4": {"location": "westus2", "vm_size": "Standard_D4ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4ahs_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ahs_v4", "tier": "Standard", "size": "D4ahs_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4alds_v5": {"location": "westus2", "vm_size": "Standard_D4alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4alds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4alds_v5", "tier": "Standard", "size": "D4alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "144000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4als_v5": {"location": "westus2", "vm_size": "Standard_D4als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4als_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4als_v5", "tier": "Standard", "size": "D4als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "144000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4as_v4": {"location": "westus2", "vm_size": "Standard_D4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4as_v4", "tier": "Standard", "size": "D4as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4as_v5": {"location": "westus2", "vm_size": "Standard_D4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4as_v5", "tier": "Standard", "size": "D4as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D4as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D4as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4as_v5_Promo", "tier": "Standard", "size": "D4as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4a_v4": {"location": "westus2", "vm_size": "Standard_D4a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4a_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4a_v4", "tier": "Standard", "size": "D4a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4darm_V3": {"location": "westus2", "vm_size": "Standard_D4darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D4darm_V3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4darm_V3", "tier": "Standard", "size": "D4darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "CachedDiskBytes", "value": "200000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ds_v4": {"location": "westus2", "vm_size": "Standard_D4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ds_v4", "tier": "Standard", "size": "D4ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ds_v5": {"location": "westus2", "vm_size": "Standard_D4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ds_v5", "tier": "Standard", "size": "D4ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4d_v4": {"location": "westus2", "vm_size": "Standard_D4d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4d_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4d_v4", "tier": "Standard", "size": "D4d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4d_v5": {"location": "westus2", "vm_size": "Standard_D4d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4d_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4d_v5", "tier": "Standard", "size": "D4d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4hs_v3": {"location": "westus2", "vm_size": "Standard_D4hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D4hs_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4hs_v3", "tier": "Standard", "size": "D4hs_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4lds_v5": {"location": "westus2", "vm_size": "Standard_D4lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4lds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4lds_v5", "tier": "Standard", "size": "D4lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ls_v5": {"location": "westus2", "vm_size": "Standard_D4ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ls_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ls_v5", "tier": "Standard", "size": "D4ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4pds_v5": {"location": "westus2", "vm_size": "Standard_D4pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4pds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4pds_v5", "tier": "Standard", "size": "D4pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4plds_v5": {"location": "westus2", "vm_size": "Standard_D4plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4plds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4plds_v5", "tier": "Standard", "size": "D4plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4pls_v5": {"location": "westus2", "vm_size": "Standard_D4pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4pls_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4pls_v5", "tier": "Standard", "size": "D4pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4ps_v5": {"location": "westus2", "vm_size": "Standard_D4ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4ps_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4ps_v5", "tier": "Standard", "size": "D4ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4s_v3": {"location": "westus2", "vm_size": "Standard_D4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4s_v3", "tier": "Standard", "size": "D4s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4s_v4": {"location": "westus2", "vm_size": "Standard_D4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4s_v4", "tier": "Standard", "size": "D4s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4s_v5": {"location": "westus2", "vm_size": "Standard_D4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4s_v5", "tier": "Standard", "size": "D4s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4_v2": {"location": "westus2", "vm_size": "Standard_D4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v2", "tier": "Standard", "size": "D4_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D4_v2_Internal": {"location": "westus2", "vm_size": "Standard_D4_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v2_Internal", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v2_Internal", "tier": "Standard", "size": "D4_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}], "restrictions": []}}, "Standard_D4_v2_Promo": {"location": "westus2", "vm_size": "Standard_D4_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v2_Promo", "tier": "Standard", "size": "D4_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196083712"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D4_v3": {"location": "westus2", "vm_size": "Standard_D4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v3", "tier": "Standard", "size": "D4_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "97517568"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "48234496"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4_v4": {"location": "westus2", "vm_size": "Standard_D4_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v4", "tier": "Standard", "size": "D4_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D4_v5": {"location": "westus2", "vm_size": "Standard_D4_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D4_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D4_v5", "tier": "Standard", "size": "D4_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D5_v2": {"location": "westus2", "vm_size": "Standard_D5_v2", "capability": {"type": "requirement", "name": "westus2_Standard_D5_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D5_v2", "tier": "Standard", "size": "D5_v2", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D5_v2_Internal": {"location": "westus2", "vm_size": "Standard_D5_v2_Internal", "capability": {"type": "requirement", "name": "westus2_Standard_D5_v2_Internal", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D5_v2_Internal", "tier": "Standard", "size": "D5_v2_Internal", "family": "standardDv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_D5_v2_Promo": {"location": "westus2", "vm_size": "Standard_D5_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D5_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D5_v2_Promo", "tier": "Standard", "size": "D5_v2_Promo", "family": "standardDv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_D64-16s_v3": {"location": "westus2", "vm_size": "Standard_D64-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64-16s_v3", "tier": "Standard", "size": "D64-16s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64-32s_v3": {"location": "westus2", "vm_size": "Standard_D64-32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64-32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64-32s_v3", "tier": "Standard", "size": "D64-32s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_D64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ads_v5": {"location": "westus2", "vm_size": "Standard_D64ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ads_v5", "tier": "Standard", "size": "D64ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64alds_v5": {"location": "westus2", "vm_size": "Standard_D64alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64alds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64alds_v5", "tier": "Standard", "size": "D64alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64als_v5": {"location": "westus2", "vm_size": "Standard_D64als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64als_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64als_v5", "tier": "Standard", "size": "D64als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64as_v4": {"location": "westus2", "vm_size": "Standard_D64as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64as_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64as_v4", "tier": "Standard", "size": "D64as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64as_v5": {"location": "westus2", "vm_size": "Standard_D64as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64as_v5", "tier": "Standard", "size": "D64as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D64as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D64as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64as_v5_Promo", "tier": "Standard", "size": "D64as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64a_v4": {"location": "westus2", "vm_size": "Standard_D64a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64a_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64a_v4", "tier": "Standard", "size": "D64a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ds_v4": {"location": "westus2", "vm_size": "Standard_D64ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64ds_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ds_v4", "tier": "Standard", "size": "D64ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ds_v5": {"location": "westus2", "vm_size": "Standard_D64ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ds_v5", "tier": "Standard", "size": "D64ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64d_v4": {"location": "westus2", "vm_size": "Standard_D64d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64d_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64d_v4", "tier": "Standard", "size": "D64d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64d_v5": {"location": "westus2", "vm_size": "Standard_D64d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64d_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64d_v5", "tier": "Standard", "size": "D64d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64lds_v5": {"location": "westus2", "vm_size": "Standard_D64lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64lds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64lds_v5", "tier": "Standard", "size": "D64lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ls_v5": {"location": "westus2", "vm_size": "Standard_D64ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ls_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ls_v5", "tier": "Standard", "size": "D64ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64pds_v5": {"location": "westus2", "vm_size": "Standard_D64pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64pds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64pds_v5", "tier": "Standard", "size": "D64pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64plds_v5": {"location": "westus2", "vm_size": "Standard_D64plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64plds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64plds_v5", "tier": "Standard", "size": "D64plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64pls_v5": {"location": "westus2", "vm_size": "Standard_D64pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64pls_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64pls_v5", "tier": "Standard", "size": "D64pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64ps_v5": {"location": "westus2", "vm_size": "Standard_D64ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64ps_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64ps_v5", "tier": "Standard", "size": "D64ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64s_v3": {"location": "westus2", "vm_size": "Standard_D64s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64s_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64s_v3", "tier": "Standard", "size": "D64s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64s_v4": {"location": "westus2", "vm_size": "Standard_D64s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64s_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64s_v4", "tier": "Standard", "size": "D64s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64s_v5": {"location": "westus2", "vm_size": "Standard_D64s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64s_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64s_v5", "tier": "Standard", "size": "D64s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64_v3": {"location": "westus2", "vm_size": "Standard_D64_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D64_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64_v3", "tier": "Standard", "size": "D64_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64_v4": {"location": "westus2", "vm_size": "Standard_D64_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D64_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64_v4", "tier": "Standard", "size": "D64_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D64_v5": {"location": "westus2", "vm_size": "Standard_D64_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D64_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D64_v5", "tier": "Standard", "size": "D64_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D8ads_v5": {"location": "westus2", "vm_size": "Standard_D8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ads_v5", "tier": "Standard", "size": "D8ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ahs_v4": {"location": "westus2", "vm_size": "Standard_D8ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8ahs_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ahs_v4", "tier": "Standard", "size": "D8ahs_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8alds_v5": {"location": "westus2", "vm_size": "Standard_D8alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8alds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8alds_v5", "tier": "Standard", "size": "D8alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "137439000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8als_v5": {"location": "westus2", "vm_size": "Standard_D8als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8als_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8als_v5", "tier": "Standard", "size": "D8als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8as_v4": {"location": "westus2", "vm_size": "Standard_D8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8as_v4", "tier": "Standard", "size": "D8as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8as_v5": {"location": "westus2", "vm_size": "Standard_D8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8as_v5", "tier": "Standard", "size": "D8as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D8as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D8as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8as_v5_Promo", "tier": "Standard", "size": "D8as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8a_v4": {"location": "westus2", "vm_size": "Standard_D8a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8a_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8a_v4", "tier": "Standard", "size": "D8a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8darm_V3": {"location": "westus2", "vm_size": "Standard_D8darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_D8darm_V3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8darm_V3", "tier": "Standard", "size": "D8darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "CachedDiskBytes", "value": "400000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ds_v4": {"location": "westus2", "vm_size": "Standard_D8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ds_v4", "tier": "Standard", "size": "D8ds_v4", "family": "standardDDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ds_v5": {"location": "westus2", "vm_size": "Standard_D8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ds_v5", "tier": "Standard", "size": "D8ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8d_v4": {"location": "westus2", "vm_size": "Standard_D8d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8d_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8d_v4", "tier": "Standard", "size": "D8d_v4", "family": "standardDDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8d_v5": {"location": "westus2", "vm_size": "Standard_D8d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8d_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8d_v5", "tier": "Standard", "size": "D8d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8hs_v3": {"location": "westus2", "vm_size": "Standard_D8hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D8hs_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8hs_v3", "tier": "Standard", "size": "D8hs_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8lds_v5": {"location": "westus2", "vm_size": "Standard_D8lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8lds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8lds_v5", "tier": "Standard", "size": "D8lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ls_v5": {"location": "westus2", "vm_size": "Standard_D8ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ls_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ls_v5", "tier": "Standard", "size": "D8ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8pds_v5": {"location": "westus2", "vm_size": "Standard_D8pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8pds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8pds_v5", "tier": "Standard", "size": "D8pds_v5", "family": "standardDPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8plds_v5": {"location": "westus2", "vm_size": "Standard_D8plds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8plds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8plds_v5", "tier": "Standard", "size": "D8plds_v5", "family": "standardDPLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8pls_v5": {"location": "westus2", "vm_size": "Standard_D8pls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8pls_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8pls_v5", "tier": "Standard", "size": "D8pls_v5", "family": "standardDPLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8ps_v5": {"location": "westus2", "vm_size": "Standard_D8ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8ps_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8ps_v5", "tier": "Standard", "size": "D8ps_v5", "family": "standardDPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8s_v3": {"location": "westus2", "vm_size": "Standard_D8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8s_v3", "tier": "Standard", "size": "D8s_v3", "family": "standardDSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8s_v4": {"location": "westus2", "vm_size": "Standard_D8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8s_v4", "tier": "Standard", "size": "D8s_v4", "family": "standardDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8s_v5": {"location": "westus2", "vm_size": "Standard_D8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Hibernation", "is_enabled": false}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8s_v5", "tier": "Standard", "size": "D8s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "HibernationSupported", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8_v3": {"location": "westus2", "vm_size": "Standard_D8_v3", "capability": {"type": "requirement", "name": "westus2_Standard_D8_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8_v3", "tier": "Standard", "size": "D8_v3", "family": "standardDv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196083712"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "97517568"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8_v4": {"location": "westus2", "vm_size": "Standard_D8_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D8_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8_v4", "tier": "Standard", "size": "D8_v4", "family": "standardDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D8_v5": {"location": "westus2", "vm_size": "Standard_D8_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D8_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D8_v5", "tier": "Standard", "size": "D8_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_D96ads_v5": {"location": "westus2", "vm_size": "Standard_D96ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96ads_v5", "tier": "Standard", "size": "D96ads_v5", "family": "standardDADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96alds_v5": {"location": "westus2", "vm_size": "Standard_D96alds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96alds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96alds_v5", "tier": "Standard", "size": "D96alds_v5", "family": "standardDALDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "1099510000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96als_v5": {"location": "westus2", "vm_size": "Standard_D96als_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96als_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96als_v5", "tier": "Standard", "size": "D96als_v5", "family": "standardDALSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96as_v4": {"location": "westus2", "vm_size": "Standard_D96as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D96as_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96as_v4", "tier": "Standard", "size": "D96as_v4", "family": "standardDASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96as_v5": {"location": "westus2", "vm_size": "Standard_D96as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96as_v5", "tier": "Standard", "size": "D96as_v5", "family": "standardDASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96as_v5_Promo": {"location": "westus2", "vm_size": "Standard_D96as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_D96as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96as_v5_Promo", "tier": "Standard", "size": "D96as_v5_Promo", "family": "standardDASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96a_v4": {"location": "westus2", "vm_size": "Standard_D96a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_D96a_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96a_v4", "tier": "Standard", "size": "D96a_v4", "family": "standardDAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96ds_v5": {"location": "westus2", "vm_size": "Standard_D96ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96ds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96ds_v5", "tier": "Standard", "size": "D96ds_v5", "family": "standardDDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96d_v5": {"location": "westus2", "vm_size": "Standard_D96d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96d_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96d_v5", "tier": "Standard", "size": "D96d_v5", "family": "standardDDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96lds_v5": {"location": "westus2", "vm_size": "Standard_D96lds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96lds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96lds_v5", "tier": "Standard", "size": "D96lds_v5", "family": "standardDLDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96ls_v5": {"location": "westus2", "vm_size": "Standard_D96ls_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96ls_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96ls_v5", "tier": "Standard", "size": "D96ls_v5", "family": "standardDLSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96s_v5": {"location": "westus2", "vm_size": "Standard_D96s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96s_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96s_v5", "tier": "Standard", "size": "D96s_v5", "family": "standardDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_D96_v5": {"location": "westus2", "vm_size": "Standard_D96_v5", "capability": {"type": "requirement", "name": "westus2_Standard_D96_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_D96_v5", "tier": "Standard", "size": "D96_v5", "family": "standardDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC16ds_v3": {"location": "westus2", "vm_size": "Standard_DC16ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC16ds_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC16ds_v3", "tier": "Standard", "size": "DC16ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC16s_v3": {"location": "westus2", "vm_size": "Standard_DC16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC16s_v3", "tier": "Standard", "size": "DC16s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "154000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "154000000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC1ds_v3": {"location": "westus2", "vm_size": "Standard_DC1ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC1ds_v3", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC1ds_v3", "tier": "Standard", "size": "DC1ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "9500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9500000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC1s_v2": {"location": "westus2", "vm_size": "Standard_DC1s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC1s_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 1, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 1, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC1s_v2", "tier": "Standard", "size": "DC1s_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "1"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "22020096"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC1s_v3": {"location": "westus2", "vm_size": "Standard_DC1s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC1s_v3", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC1s_v3", "tier": "Standard", "size": "DC1s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "9500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9500000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC24ds_v3": {"location": "westus2", "vm_size": "Standard_DC24ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC24ds_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC24ds_v3", "tier": "Standard", "size": "DC24ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "231000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "231000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "231000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC24s_v3": {"location": "westus2", "vm_size": "Standard_DC24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC24s_v3", "tier": "Standard", "size": "DC24s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "231000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "231000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "231000000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC2ds_v3": {"location": "westus2", "vm_size": "Standard_DC2ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC2ds_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC2ds_v3", "tier": "Standard", "size": "DC2ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC2s_v2": {"location": "westus2", "vm_size": "Standard_DC2s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC2s_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 2, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 2, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC2s_v2", "tier": "Standard", "size": "DC2s_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "2"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "45088768"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC2s_v3": {"location": "westus2", "vm_size": "Standard_DC2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC2s_v3", "tier": "Standard", "size": "DC2s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "19000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "19000000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC32ds_v3": {"location": "westus2", "vm_size": "Standard_DC32ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC32ds_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC32ds_v3", "tier": "Standard", "size": "DC32ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC32s_v3": {"location": "westus2", "vm_size": "Standard_DC32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC32s_v3", "tier": "Standard", "size": "DC32s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "308000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "308000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC48ds_v3": {"location": "westus2", "vm_size": "Standard_DC48ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC48ds_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC48ds_v3", "tier": "Standard", "size": "DC48ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC48s_v3": {"location": "westus2", "vm_size": "Standard_DC48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC48s_v3", "tier": "Standard", "size": "DC48s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "462000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "462000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC4ds_v3": {"location": "westus2", "vm_size": "Standard_DC4ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC4ds_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC4ds_v3", "tier": "Standard", "size": "DC4ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DC4s_v2": {"location": "westus2", "vm_size": "Standard_DC4s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC4s_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC4s_v2", "tier": "Standard", "size": "DC4s_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "90177536"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DC4s_v3": {"location": "westus2", "vm_size": "Standard_DC4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC4s_v3", "tier": "Standard", "size": "DC4s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "38500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "38500000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DC8ds_v3": {"location": "westus2", "vm_size": "Standard_DC8ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC8ds_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC8ds_v3", "tier": "Standard", "size": "DC8ds_v3", "family": "standardDDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC8s_v3": {"location": "westus2", "vm_size": "Standard_DC8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_DC8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC8s_v3", "tier": "Standard", "size": "DC8s_v3", "family": "standardDCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "77000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "77000000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DC8_v2": {"location": "westus2", "vm_size": "Standard_DC8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DC8_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "ACC"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DC8_v2", "tier": "Standard", "size": "DC8_v2", "family": "standardDCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "180355072"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "1"}], "restrictions": []}}, "Standard_DS11-1_v2": {"location": "westus2", "vm_size": "Standard_DS11-1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS11-1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS11-1_v2", "tier": "Standard", "size": "DS11-1_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS11_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "77309411328"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS11_v2": {"location": "westus2", "vm_size": "Standard_DS11_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS11_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS11_v2", "tier": "Standard", "size": "DS11_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "77309411328"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS11_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS11_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS11_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS11_v2_Promo", "tier": "Standard", "size": "DS11_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "77309411328"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS12-1_v2": {"location": "westus2", "vm_size": "Standard_DS12-1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS12-1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12-1_v2", "tier": "Standard", "size": "DS12-1_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS12_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS12-2_v2": {"location": "westus2", "vm_size": "Standard_DS12-2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS12-2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12-2_v2", "tier": "Standard", "size": "DS12-2_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS12_v2": {"location": "westus2", "vm_size": "Standard_DS12_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS12_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12_v2", "tier": "Standard", "size": "DS12_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS12_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS12_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS12_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS12_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS12_v2_Promo", "tier": "Standard", "size": "DS12_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS13-2_v2": {"location": "westus2", "vm_size": "Standard_DS13-2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS13-2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13-2_v2", "tier": "Standard", "size": "DS13-2_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS13_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS13-4_v2": {"location": "westus2", "vm_size": "Standard_DS13-4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS13-4_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13-4_v2", "tier": "Standard", "size": "DS13-4_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS13_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS13_v2": {"location": "westus2", "vm_size": "Standard_DS13_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS13_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13_v2", "tier": "Standard", "size": "DS13_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS13_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS13_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS13_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS13_v2_Promo", "tier": "Standard", "size": "DS13_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS14-4_v2": {"location": "westus2", "vm_size": "Standard_DS14-4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS14-4_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14-4_v2", "tier": "Standard", "size": "DS14-4_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS14_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS14-8_v2": {"location": "westus2", "vm_size": "Standard_DS14-8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS14-8_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14-8_v2", "tier": "Standard", "size": "DS14-8_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "ParentSize", "value": "Standard_DS14_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS14_v2": {"location": "westus2", "vm_size": "Standard_DS14_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS14_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14_v2", "tier": "Standard", "size": "DS14_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS14_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS14_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS14_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS14_v2_Promo", "tier": "Standard", "size": "DS14_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS15i_v2": {"location": "westus2", "vm_size": "Standard_DS15i_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS15i_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS15i_v2", "tier": "Standard", "size": "DS15i_v2", "family": "standardDISv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "286720"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "655360000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "655360000"}, {"name": "CachedDiskBytes", "value": "773094113280"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "960000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS15_v2": {"location": "westus2", "vm_size": "Standard_DS15_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS15_v2", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 143360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS15_v2", "tier": "Standard", "size": "DS15_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "286720"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "140"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "655360000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "655360000"}, {"name": "CachedDiskBytes", "value": "773094113280"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "960000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS1_v2": {"location": "westus2", "vm_size": "Standard_DS1_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS1_v2", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 3584, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS1_v2", "tier": "Standard", "size": "DS1_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "7168"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3.5"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "46170898432"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS2_v2": {"location": "westus2", "vm_size": "Standard_DS2_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS2_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS2_v2", "tier": "Standard", "size": "DS2_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "14336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "92341796864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_DS2_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS2_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS2_v2_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 7168, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS2_v2_Promo", "tier": "Standard", "size": "DS2_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "14336"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "7"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "92341796864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS3_v2": {"location": "westus2", "vm_size": "Standard_DS3_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS3_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS3_v2", "tier": "Standard", "size": "DS3_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "184683593728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_DS3_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS3_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS3_v2_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS3_v2_Promo", "tier": "Standard", "size": "DS3_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "28672"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "184683593728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS4_v2": {"location": "westus2", "vm_size": "Standard_DS4_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS4_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS4_v2", "tier": "Standard", "size": "DS4_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "369367187456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS4_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS4_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS4_v2_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS4_v2_Promo", "tier": "Standard", "size": "DS4_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "369367187456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_DS5_v2": {"location": "westus2", "vm_size": "Standard_DS5_v2", "capability": {"type": "requirement", "name": "westus2_Standard_DS5_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS5_v2", "tier": "Standard", "size": "DS5_v2", "family": "standardDSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "738734374912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_DS5_v2_Promo": {"location": "westus2", "vm_size": "Standard_DS5_v2_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_DS5_v2_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_DS5_v2_Promo", "tier": "Standard", "size": "DS5_v2_Promo", "family": "standardDSv2PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "738734374912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_E104ids_v5": {"location": "westus2", "vm_size": "Standard_E104ids_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104ids_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104ids_v5", "tier": "Standard", "size": "E104ids_v5", "family": "standardEIDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E104id_v5": {"location": "westus2", "vm_size": "Standard_E104id_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104id_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104id_v5", "tier": "Standard", "size": "E104id_v5", "family": "standardEIDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E104is_v5": {"location": "westus2", "vm_size": "Standard_E104is_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104is_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104is_v5", "tier": "Standard", "size": "E104is_v5", "family": "standardEISv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E104i_v5": {"location": "westus2", "vm_size": "Standard_E104i_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E104i_v5", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E104i_v5", "tier": "Standard", "size": "E104i_v5", "family": "standardEIv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4194304000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112iadms_v5": {"location": "westus2", "vm_size": "Standard_E112iadms_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112iadms_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112iadms_v5", "tier": "Standard", "size": "E112iadms_v5", "family": "standardG8HHIAMDSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112iads_v5": {"location": "westus2", "vm_size": "Standard_E112iads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112iads_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112iads_v5", "tier": "Standard", "size": "E112iads_v5", "family": "standardEIADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112ias_v5": {"location": "westus2", "vm_size": "Standard_E112ias_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112ias_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112ias_v5", "tier": "Standard", "size": "E112ias_v5", "family": "standardEIASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112ibds_v5": {"location": "westus2", "vm_size": "Standard_E112ibds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112ibds_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112ibds_v5", "tier": "Standard", "size": "E112ibds_v5", "family": "standardEIBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3891200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E112ibs_v5": {"location": "westus2", "vm_size": "Standard_E112ibs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E112ibs_v5", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E112ibs_v5", "tier": "Standard", "size": "E112ibs_v5", "family": "standardEIBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "260000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4ads_v5": {"location": "westus2", "vm_size": "Standard_E16-4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4ads_v5", "tier": "Standard", "size": "E16-4ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4as_v4": {"location": "westus2", "vm_size": "Standard_E16-4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4as_v4", "tier": "Standard", "size": "E16-4as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4as_v5": {"location": "westus2", "vm_size": "Standard_E16-4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4as_v5", "tier": "Standard", "size": "E16-4as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4ds_v4": {"location": "westus2", "vm_size": "Standard_E16-4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4ds_v4", "tier": "Standard", "size": "E16-4ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4ds_v5": {"location": "westus2", "vm_size": "Standard_E16-4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4ds_v5", "tier": "Standard", "size": "E16-4ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E16ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4s_v3": {"location": "westus2", "vm_size": "Standard_E16-4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4s_v3", "tier": "Standard", "size": "E16-4s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4s_v4": {"location": "westus2", "vm_size": "Standard_E16-4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4s_v4", "tier": "Standard", "size": "E16-4s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-4s_v5": {"location": "westus2", "vm_size": "Standard_E16-4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-4s_v5", "tier": "Standard", "size": "E16-4s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E16s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8ads_v5": {"location": "westus2", "vm_size": "Standard_E16-8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8ads_v5", "tier": "Standard", "size": "E16-8ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8as_v4": {"location": "westus2", "vm_size": "Standard_E16-8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8as_v4", "tier": "Standard", "size": "E16-8as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8as_v5": {"location": "westus2", "vm_size": "Standard_E16-8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8as_v5", "tier": "Standard", "size": "E16-8as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E16as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8ds_v4": {"location": "westus2", "vm_size": "Standard_E16-8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8ds_v4", "tier": "Standard", "size": "E16-8ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8ds_v5": {"location": "westus2", "vm_size": "Standard_E16-8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8ds_v5", "tier": "Standard", "size": "E16-8ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E16ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8s_v3": {"location": "westus2", "vm_size": "Standard_E16-8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8s_v3", "tier": "Standard", "size": "E16-8s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E16s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8s_v4": {"location": "westus2", "vm_size": "Standard_E16-8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8s_v4", "tier": "Standard", "size": "E16-8s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E16s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16-8s_v5": {"location": "westus2", "vm_size": "Standard_E16-8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16-8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16-8s_v5", "tier": "Standard", "size": "E16-8s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E16s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ads_v5": {"location": "westus2", "vm_size": "Standard_E16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ads_v5", "tier": "Standard", "size": "E16ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16as_v4": {"location": "westus2", "vm_size": "Standard_E16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16as_v4", "tier": "Standard", "size": "E16as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16as_v5": {"location": "westus2", "vm_size": "Standard_E16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16as_v5", "tier": "Standard", "size": "E16as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E16as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E16as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16as_v5_Promo", "tier": "Standard", "size": "E16as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16a_v4": {"location": "westus2", "vm_size": "Standard_E16a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16a_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16a_v4", "tier": "Standard", "size": "E16a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16bds_v5": {"location": "westus2", "vm_size": "Standard_E16bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16bds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16bds_v5", "tier": "Standard", "size": "E16bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "UncachedDiskIOPS", "value": "44000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1250000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16bs_v5": {"location": "westus2", "vm_size": "Standard_E16bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16bs_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16bs_v5", "tier": "Standard", "size": "E16bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "UncachedDiskIOPS", "value": "44000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1250000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16darm_V3": {"location": "westus2", "vm_size": "Standard_E16darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E16darm_V3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16darm_V3", "tier": "Standard", "size": "E16darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "968000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "968000000"}, {"name": "CachedDiskBytes", "value": "400000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ds_v4": {"location": "westus2", "vm_size": "Standard_E16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ds_v4", "tier": "Standard", "size": "E16ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E16ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E16ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 129024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ds_v4_ADHType1", "tier": "Standard", "size": "E16ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "126"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16ds_v5": {"location": "westus2", "vm_size": "Standard_E16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ds_v5", "tier": "Standard", "size": "E16ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16d_v4": {"location": "westus2", "vm_size": "Standard_E16d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16d_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16d_v4", "tier": "Standard", "size": "E16d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "967835648"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "484442112"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16d_v5": {"location": "westus2", "vm_size": "Standard_E16d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16d_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16d_v5", "tier": "Standard", "size": "E16d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16pds_v5": {"location": "westus2", "vm_size": "Standard_E16pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16pds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16pds_v5", "tier": "Standard", "size": "E16pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "614400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E16ps_v5": {"location": "westus2", "vm_size": "Standard_E16ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16ps_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16ps_v5", "tier": "Standard", "size": "E16ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E16s_v3": {"location": "westus2", "vm_size": "Standard_E16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v3", "tier": "Standard", "size": "E16s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16s_v4": {"location": "westus2", "vm_size": "Standard_E16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v4", "tier": "Standard", "size": "E16s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E16s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 129024, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v4_ADHType1", "tier": "Standard", "size": "E16s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "126"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "429497000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16s_v5": {"location": "westus2", "vm_size": "Standard_E16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16s_v5", "tier": "Standard", "size": "E16s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16_v3": {"location": "westus2", "vm_size": "Standard_E16_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E16_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16_v3", "tier": "Standard", "size": "E16_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16_v4": {"location": "westus2", "vm_size": "Standard_E16_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E16_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16_v4", "tier": "Standard", "size": "E16_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E16_v5": {"location": "westus2", "vm_size": "Standard_E16_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E16_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E16_v5", "tier": "Standard", "size": "E16_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "154000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1048576000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ads_v5": {"location": "westus2", "vm_size": "Standard_E20ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20ads_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ads_v5", "tier": "Standard", "size": "E20ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "94000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20as_v4": {"location": "westus2", "vm_size": "Standard_E20as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20as_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20as_v4", "tier": "Standard", "size": "E20as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "335544320"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20as_v5": {"location": "westus2", "vm_size": "Standard_E20as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20as_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20as_v5", "tier": "Standard", "size": "E20as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E20as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E20as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20as_v5_Promo", "tier": "Standard", "size": "E20as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20a_v4": {"location": "westus2", "vm_size": "Standard_E20a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20a_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20a_v4", "tier": "Standard", "size": "E20a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20darm_V3": {"location": "westus2", "vm_size": "Standard_E20darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E20darm_V3", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20darm_V3", "tier": "Standard", "size": "E20darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1211000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1211000000"}, {"name": "CachedDiskBytes", "value": "500000000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ds_v4": {"location": "westus2", "vm_size": "Standard_E20ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20ds_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ds_v4", "tier": "Standard", "size": "E20ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "190000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1209008128"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "603979776"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ds_v5": {"location": "westus2", "vm_size": "Standard_E20ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20ds_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ds_v5", "tier": "Standard", "size": "E20ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20d_v4": {"location": "westus2", "vm_size": "Standard_E20d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20d_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20d_v4", "tier": "Standard", "size": "E20d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "190000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1209008128"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "603979776"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20d_v5": {"location": "westus2", "vm_size": "Standard_E20d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20d_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20d_v5", "tier": "Standard", "size": "E20d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20pds_v5": {"location": "westus2", "vm_size": "Standard_E20pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20pds_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20pds_v5", "tier": "Standard", "size": "E20pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "768000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "95000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1250000000"}, {"name": "CachedDiskBytes", "value": "536870912000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "750000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20ps_v5": {"location": "westus2", "vm_size": "Standard_E20ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20ps_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20ps_v5", "tier": "Standard", "size": "E20ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "95000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1250000000"}, {"name": "CachedDiskBytes", "value": "536870912000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "750000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20s_v3": {"location": "westus2", "vm_size": "Standard_E20s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E20s_v3", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20s_v3", "tier": "Standard", "size": "E20s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "335544320"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20s_v4": {"location": "westus2", "vm_size": "Standard_E20s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20s_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20s_v4", "tier": "Standard", "size": "E20s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20s_v5": {"location": "westus2", "vm_size": "Standard_E20s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20s_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20s_v5", "tier": "Standard", "size": "E20s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20_v3": {"location": "westus2", "vm_size": "Standard_E20_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E20_v3", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20_v3", "tier": "Standard", "size": "E20_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "30000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "491520000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "245760000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "480000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20_v4": {"location": "westus2", "vm_size": "Standard_E20_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E20_v4", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20_v4", "tier": "Standard", "size": "E20_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "429496729600"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "503316480"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E20_v5": {"location": "westus2", "vm_size": "Standard_E20_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E20_v5", "is_default": false, "node_count": 1, "core_count": 20, "memory_mb": 163840, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E20_v5", "tier": "Standard", "size": "E20_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "20"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "160"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "20"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "193000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1310720000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1310720000"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "786432000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E2ads_v5": {"location": "westus2", "vm_size": "Standard_E2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ads_v5", "tier": "Standard", "size": "E2ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85983232"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2as_v4": {"location": "westus2", "vm_size": "Standard_E2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2as_v4", "tier": "Standard", "size": "E2as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2as_v5": {"location": "westus2", "vm_size": "Standard_E2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2as_v5", "tier": "Standard", "size": "E2as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85983232"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E2as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E2as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2as_v5_Promo", "tier": "Standard", "size": "E2as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2a_v4": {"location": "westus2", "vm_size": "Standard_E2a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2a_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2a_v4", "tier": "Standard", "size": "E2a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2bds_v5": {"location": "westus2", "vm_size": "Standard_E2bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2bds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2bds_v5", "tier": "Standard", "size": "E2bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "5500"}, {"name": "UncachedDiskBytesPerSecond", "value": "156000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2bs_v5": {"location": "westus2", "vm_size": "Standard_E2bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2bs_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2bs_v5", "tier": "Standard", "size": "E2bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "UncachedDiskIOPS", "value": "5500"}, {"name": "UncachedDiskBytesPerSecond", "value": "156000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2darm_V3": {"location": "westus2", "vm_size": "Standard_E2darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E2darm_V3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2darm_V3", "tier": "Standard", "size": "E2darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120000000"}, {"name": "CachedDiskBytes", "value": "50000000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2ds_v4": {"location": "westus2", "vm_size": "Standard_E2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ds_v4", "tier": "Standard", "size": "E2ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2ds_v5": {"location": "westus2", "vm_size": "Standard_E2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ds_v5", "tier": "Standard", "size": "E2ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2d_v4": {"location": "westus2", "vm_size": "Standard_E2d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2d_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2d_v4", "tier": "Standard", "size": "E2d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "120586240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "59768832"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2d_v5": {"location": "westus2", "vm_size": "Standard_E2d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2d_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2d_v5", "tier": "Standard", "size": "E2d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2pds_v5": {"location": "westus2", "vm_size": "Standard_E2pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2pds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2pds_v5", "tier": "Standard", "size": "E2pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "76800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2ps_v5": {"location": "westus2", "vm_size": "Standard_E2ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2ps_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2ps_v5", "tier": "Standard", "size": "E2ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "9375"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125000000"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "85000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2s_v3": {"location": "westus2", "vm_size": "Standard_E2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2s_v3", "tier": "Standard", "size": "E2s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2s_v4": {"location": "westus2", "vm_size": "Standard_E2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2s_v4", "tier": "Standard", "size": "E2s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2s_v5": {"location": "westus2", "vm_size": "Standard_E2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2s_v5", "tier": "Standard", "size": "E2s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2_v3": {"location": "westus2", "vm_size": "Standard_E2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E2_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2_v3", "tier": "Standard", "size": "E2_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "51200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2_v4": {"location": "westus2", "vm_size": "Standard_E2_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E2_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2_v4", "tier": "Standard", "size": "E2_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "53687091200"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E2_v5": {"location": "westus2", "vm_size": "Standard_E2_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E2_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E2_v5", "tier": "Standard", "size": "E2_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "UncachedDiskIOPS", "value": "3750"}, {"name": "UncachedDiskBytesPerSecond", "value": "89128960"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E32-16ads_v5": {"location": "westus2", "vm_size": "Standard_E32-16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16ads_v5", "tier": "Standard", "size": "E32-16ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16as_v4": {"location": "westus2", "vm_size": "Standard_E32-16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16as_v4", "tier": "Standard", "size": "E32-16as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16as_v5": {"location": "westus2", "vm_size": "Standard_E32-16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16as_v5", "tier": "Standard", "size": "E32-16as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16ds_v4": {"location": "westus2", "vm_size": "Standard_E32-16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16ds_v4", "tier": "Standard", "size": "E32-16ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16ds_v5": {"location": "westus2", "vm_size": "Standard_E32-16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16ds_v5", "tier": "Standard", "size": "E32-16ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E32ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16s_v3": {"location": "westus2", "vm_size": "Standard_E32-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16s_v3", "tier": "Standard", "size": "E32-16s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16s_v4": {"location": "westus2", "vm_size": "Standard_E32-16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16s_v4", "tier": "Standard", "size": "E32-16s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-16s_v5": {"location": "westus2", "vm_size": "Standard_E32-16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-16s_v5", "tier": "Standard", "size": "E32-16s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E32s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8ads_v5": {"location": "westus2", "vm_size": "Standard_E32-8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8ads_v5", "tier": "Standard", "size": "E32-8ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8as_v4": {"location": "westus2", "vm_size": "Standard_E32-8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8as_v4", "tier": "Standard", "size": "E32-8as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8as_v5": {"location": "westus2", "vm_size": "Standard_E32-8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8as_v5", "tier": "Standard", "size": "E32-8as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E32as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8ds_v4": {"location": "westus2", "vm_size": "Standard_E32-8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8ds_v4", "tier": "Standard", "size": "E32-8ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8ds_v5": {"location": "westus2", "vm_size": "Standard_E32-8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8ds_v5", "tier": "Standard", "size": "E32-8ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E32ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8s_v3": {"location": "westus2", "vm_size": "Standard_E32-8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8s_v3", "tier": "Standard", "size": "E32-8s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E32s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8s_v4": {"location": "westus2", "vm_size": "Standard_E32-8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8s_v4", "tier": "Standard", "size": "E32-8s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E32s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32-8s_v5": {"location": "westus2", "vm_size": "Standard_E32-8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32-8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32-8s_v5", "tier": "Standard", "size": "E32-8s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ParentSize", "value": "Standard_E32s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ads_v5": {"location": "westus2", "vm_size": "Standard_E32ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ads_v5", "tier": "Standard", "size": "E32ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32as_v4": {"location": "westus2", "vm_size": "Standard_E32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32as_v4", "tier": "Standard", "size": "E32as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32as_v5": {"location": "westus2", "vm_size": "Standard_E32as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32as_v5", "tier": "Standard", "size": "E32as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E32as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E32as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32as_v5_Promo", "tier": "Standard", "size": "E32as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32a_v4": {"location": "westus2", "vm_size": "Standard_E32a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32a_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32a_v4", "tier": "Standard", "size": "E32a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32bds_v5": {"location": "westus2", "vm_size": "Standard_E32bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32bds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32bds_v5", "tier": "Standard", "size": "E32bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "UncachedDiskIOPS", "value": "88000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2500000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32bs_v5": {"location": "westus2", "vm_size": "Standard_E32bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32bs_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32bs_v5", "tier": "Standard", "size": "E32bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "UncachedDiskIOPS", "value": "88000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32darm_V3": {"location": "westus2", "vm_size": "Standard_E32darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E32darm_V3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32darm_V3", "tier": "Standard", "size": "E32darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1936000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1936000000"}, {"name": "CachedDiskBytes", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ds_v4": {"location": "westus2", "vm_size": "Standard_E32ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32ds_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ds_v4", "tier": "Standard", "size": "E32ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E32ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E32ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 258048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ds_v4_ADHType1", "tier": "Standard", "size": "E32ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "252"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ds_v5": {"location": "westus2", "vm_size": "Standard_E32ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32ds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ds_v5", "tier": "Standard", "size": "E32ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32d_v4": {"location": "westus2", "vm_size": "Standard_E32d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32d_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32d_v4", "tier": "Standard", "size": "E32d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1935671296"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "967835648"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32d_v5": {"location": "westus2", "vm_size": "Standard_E32d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32d_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32d_v5", "tier": "Standard", "size": "E32d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32pds_v5": {"location": "westus2", "vm_size": "Standard_E32pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32pds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32pds_v5", "tier": "Standard", "size": "E32pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32ps_v5": {"location": "westus2", "vm_size": "Standard_E32ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32ps_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 212992, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32ps_v5", "tier": "Standard", "size": "E32ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "208"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "150000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2000000000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v3": {"location": "westus2", "vm_size": "Standard_E32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v3", "tier": "Standard", "size": "E32s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v4": {"location": "westus2", "vm_size": "Standard_E32s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v4", "tier": "Standard", "size": "E32s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E32s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 258048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v4_ADHType1", "tier": "Standard", "size": "E32s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "252"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "858993000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32s_v5": {"location": "westus2", "vm_size": "Standard_E32s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32s_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32s_v5", "tier": "Standard", "size": "E32s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32_v3": {"location": "westus2", "vm_size": "Standard_E32_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E32_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32_v3", "tier": "Standard", "size": "E32_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32_v4": {"location": "westus2", "vm_size": "Standard_E32_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E32_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32_v4", "tier": "Standard", "size": "E32_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "858993459200"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E32_v5": {"location": "westus2", "vm_size": "Standard_E32_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E32_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E32_v5", "tier": "Standard", "size": "E32_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "308000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2097152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2097152000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "907018240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E4-2ads_v5": {"location": "westus2", "vm_size": "Standard_E4-2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2ads_v5", "tier": "Standard", "size": "E4-2ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E4ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2as_v4": {"location": "westus2", "vm_size": "Standard_E4-2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2as_v4", "tier": "Standard", "size": "E4-2as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E4as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2as_v5": {"location": "westus2", "vm_size": "Standard_E4-2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2as_v5", "tier": "Standard", "size": "E4-2as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E4as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2ds_v4": {"location": "westus2", "vm_size": "Standard_E4-2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2ds_v4", "tier": "Standard", "size": "E4-2ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E4ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2ds_v5": {"location": "westus2", "vm_size": "Standard_E4-2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2ds_v5", "tier": "Standard", "size": "E4-2ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E4ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2s_v3": {"location": "westus2", "vm_size": "Standard_E4-2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2s_v3", "tier": "Standard", "size": "E4-2s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E4s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2s_v4": {"location": "westus2", "vm_size": "Standard_E4-2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2s_v4", "tier": "Standard", "size": "E4-2s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E4s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4-2s_v5": {"location": "westus2", "vm_size": "Standard_E4-2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4-2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4-2s_v5", "tier": "Standard", "size": "E4-2s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E4s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E48ads_v5": {"location": "westus2", "vm_size": "Standard_E48ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48ads_v5", "tier": "Standard", "size": "E48ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48as_v4": {"location": "westus2", "vm_size": "Standard_E48as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48as_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48as_v4", "tier": "Standard", "size": "E48as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48as_v5": {"location": "westus2", "vm_size": "Standard_E48as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48as_v5", "tier": "Standard", "size": "E48as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E48as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E48as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48as_v5_Promo", "tier": "Standard", "size": "E48as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48a_v4": {"location": "westus2", "vm_size": "Standard_E48a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48a_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48a_v4", "tier": "Standard", "size": "E48a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48bds_v5": {"location": "westus2", "vm_size": "Standard_E48bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48bds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48bds_v5", "tier": "Standard", "size": "E48bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2904000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2904000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48bs_v5": {"location": "westus2", "vm_size": "Standard_E48bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48bs_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48bs_v5", "tier": "Standard", "size": "E48bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2904000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2904000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48darm_V3": {"location": "westus2", "vm_size": "Standard_E48darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E48darm_V3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48darm_V3", "tier": "Standard", "size": "E48darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1200000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48ds_v4": {"location": "westus2", "vm_size": "Standard_E48ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48ds_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48ds_v4", "tier": "Standard", "size": "E48ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48ds_v5": {"location": "westus2", "vm_size": "Standard_E48ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48ds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48ds_v5", "tier": "Standard", "size": "E48ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48d_v4": {"location": "westus2", "vm_size": "Standard_E48d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48d_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48d_v4", "tier": "Standard", "size": "E48d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48d_v5": {"location": "westus2", "vm_size": "Standard_E48d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48d_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48d_v5", "tier": "Standard", "size": "E48d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1843200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48s_v3": {"location": "westus2", "vm_size": "Standard_E48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48s_v3", "tier": "Standard", "size": "E48s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48s_v4": {"location": "westus2", "vm_size": "Standard_E48s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48s_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48s_v4", "tier": "Standard", "size": "E48s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48s_v5": {"location": "westus2", "vm_size": "Standard_E48s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48s_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48s_v5", "tier": "Standard", "size": "E48s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48_v3": {"location": "westus2", "vm_size": "Standard_E48_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E48_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48_v3", "tier": "Standard", "size": "E48_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1228800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48_v4": {"location": "westus2", "vm_size": "Standard_E48_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E48_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48_v4", "tier": "Standard", "size": "E48_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1288490188800"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1207959552"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E48_v5": {"location": "westus2", "vm_size": "Standard_E48_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E48_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E48_v5", "tier": "Standard", "size": "E48_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "462000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3145728000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3145728000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1378877440"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E4ads_v5": {"location": "westus2", "vm_size": "Standard_E4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ads_v5", "tier": "Standard", "size": "E4ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4as_v4": {"location": "westus2", "vm_size": "Standard_E4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4as_v4", "tier": "Standard", "size": "E4as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4as_v5": {"location": "westus2", "vm_size": "Standard_E4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4as_v5", "tier": "Standard", "size": "E4as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "150994944"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E4as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E4as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4as_v5_Promo", "tier": "Standard", "size": "E4as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4a_v4": {"location": "westus2", "vm_size": "Standard_E4a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4a_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4a_v4", "tier": "Standard", "size": "E4a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4bds_v5": {"location": "westus2", "vm_size": "Standard_E4bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4bds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4bds_v5", "tier": "Standard", "size": "E4bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "18750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "UncachedDiskIOPS", "value": "11000"}, {"name": "UncachedDiskBytesPerSecond", "value": "350000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4bs_v5": {"location": "westus2", "vm_size": "Standard_E4bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4bs_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4bs_v5", "tier": "Standard", "size": "E4bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "18750"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "UncachedDiskIOPS", "value": "11000"}, {"name": "UncachedDiskBytesPerSecond", "value": "350000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4darm_V3": {"location": "westus2", "vm_size": "Standard_E4darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E4darm_V3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4darm_V3", "tier": "Standard", "size": "E4darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242000000"}, {"name": "CachedDiskBytes", "value": "100000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ds_v4": {"location": "westus2", "vm_size": "Standard_E4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ds_v4", "tier": "Standard", "size": "E4ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E4ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E4ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 31744, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ds_v4_ADHType1", "tier": "Standard", "size": "E4ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "31"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ds_v5": {"location": "westus2", "vm_size": "Standard_E4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ds_v5", "tier": "Standard", "size": "E4ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4d_v4": {"location": "westus2", "vm_size": "Standard_E4d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4d_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4d_v4", "tier": "Standard", "size": "E4d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "242221056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "120586240"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4d_v5": {"location": "westus2", "vm_size": "Standard_E4d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4d_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4d_v5", "tier": "Standard", "size": "E4d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4pds_v5": {"location": "westus2", "vm_size": "Standard_E4pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4pds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4pds_v5", "tier": "Standard", "size": "E4pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "153600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4ps_v5": {"location": "westus2", "vm_size": "Standard_E4ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4ps_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4ps_v5", "tier": "Standard", "size": "E4ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "19000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "250000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "250000000"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "145000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v3": {"location": "westus2", "vm_size": "Standard_E4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v3", "tier": "Standard", "size": "E4s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v4": {"location": "westus2", "vm_size": "Standard_E4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v4", "tier": "Standard", "size": "E4s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E4s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 31744, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v4_ADHType1", "tier": "Standard", "size": "E4s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "31"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "107374000000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4s_v5": {"location": "westus2", "vm_size": "Standard_E4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4s_v5", "tier": "Standard", "size": "E4s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4_v3": {"location": "westus2", "vm_size": "Standard_E4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E4_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4_v3", "tier": "Standard", "size": "E4_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "102400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4_v4": {"location": "westus2", "vm_size": "Standard_E4_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E4_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4_v4", "tier": "Standard", "size": "E4_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "107374182400"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E4_v5": {"location": "westus2", "vm_size": "Standard_E4_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E4_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E4_v5", "tier": "Standard", "size": "E4_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "152043520"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E64-16ads_v5": {"location": "westus2", "vm_size": "Standard_E64-16ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16ads_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16ads_v5", "tier": "Standard", "size": "E64-16ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16as_v4": {"location": "westus2", "vm_size": "Standard_E64-16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16as_v4", "tier": "Standard", "size": "E64-16as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16as_v5": {"location": "westus2", "vm_size": "Standard_E64-16as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16as_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16as_v5", "tier": "Standard", "size": "E64-16as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16ds_v4": {"location": "westus2", "vm_size": "Standard_E64-16ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16ds_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16ds_v4", "tier": "Standard", "size": "E64-16ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16ds_v5": {"location": "westus2", "vm_size": "Standard_E64-16ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16ds_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16ds_v5", "tier": "Standard", "size": "E64-16ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E64ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16s_v3": {"location": "westus2", "vm_size": "Standard_E64-16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16s_v3", "tier": "Standard", "size": "E64-16s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16s_v4": {"location": "westus2", "vm_size": "Standard_E64-16s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16s_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16s_v4", "tier": "Standard", "size": "E64-16s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-16s_v5": {"location": "westus2", "vm_size": "Standard_E64-16s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-16s_v5", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-16s_v5", "tier": "Standard", "size": "E64-16s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_E64s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32ads_v5": {"location": "westus2", "vm_size": "Standard_E64-32ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32ads_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32ads_v5", "tier": "Standard", "size": "E64-32ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32as_v4": {"location": "westus2", "vm_size": "Standard_E64-32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32as_v4", "tier": "Standard", "size": "E64-32as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32as_v5": {"location": "westus2", "vm_size": "Standard_E64-32as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32as_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32as_v5", "tier": "Standard", "size": "E64-32as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E64as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32ds_v4": {"location": "westus2", "vm_size": "Standard_E64-32ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32ds_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32ds_v4", "tier": "Standard", "size": "E64-32ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32ds_v5": {"location": "westus2", "vm_size": "Standard_E64-32ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32ds_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32ds_v5", "tier": "Standard", "size": "E64-32ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ParentSize", "value": "Standard_E64ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32s_v3": {"location": "westus2", "vm_size": "Standard_E64-32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32s_v3", "tier": "Standard", "size": "E64-32s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E64s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32s_v4": {"location": "westus2", "vm_size": "Standard_E64-32s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32s_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32s_v4", "tier": "Standard", "size": "E64-32s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E64s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64-32s_v5": {"location": "westus2", "vm_size": "Standard_E64-32s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64-32s_v5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64-32s_v5", "tier": "Standard", "size": "E64-32s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ParentSize", "value": "Standard_E64s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64ads_v5": {"location": "westus2", "vm_size": "Standard_E64ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64ads_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64ads_v5", "tier": "Standard", "size": "E64ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64as_v4": {"location": "westus2", "vm_size": "Standard_E64as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64as_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64as_v4", "tier": "Standard", "size": "E64as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64as_v5": {"location": "westus2", "vm_size": "Standard_E64as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64as_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64as_v5", "tier": "Standard", "size": "E64as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E64as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E64as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64as_v5_Promo", "tier": "Standard", "size": "E64as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64a_v4": {"location": "westus2", "vm_size": "Standard_E64a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64a_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64a_v4", "tier": "Standard", "size": "E64a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64bds_v5": {"location": "westus2", "vm_size": "Standard_E64bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64bds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64bds_v5", "tier": "Standard", "size": "E64bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64bs_v5": {"location": "westus2", "vm_size": "Standard_E64bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64bs_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64bs_v5", "tier": "Standard", "size": "E64bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "300000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3872000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3872000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64ds_v4": {"location": "westus2", "vm_size": "Standard_E64ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64ds_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64ds_v4", "tier": "Standard", "size": "E64ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64ds_v5": {"location": "westus2", "vm_size": "Standard_E64ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64ds_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64ds_v5", "tier": "Standard", "size": "E64ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64d_v4": {"location": "westus2", "vm_size": "Standard_E64d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64d_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64d_v4", "tier": "Standard", "size": "E64d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64d_v5": {"location": "westus2", "vm_size": "Standard_E64d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64d_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64d_v5", "tier": "Standard", "size": "E64d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64is_v3": {"location": "westus2", "vm_size": "Standard_E64is_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64is_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64is_v3", "tier": "Standard", "size": "E64is_v3", "family": "standardEISv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64is_v4_SPECIAL": {"location": "westus2", "vm_size": "Standard_E64is_v4_SPECIAL", "capability": {"type": "requirement", "name": "westus2_Standard_E64is_v4_SPECIAL", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64is_v4_SPECIAL", "tier": "Standard", "size": "E64is_v4_SPECIAL", "family": "standardEISv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64i_v3": {"location": "westus2", "vm_size": "Standard_E64i_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64i_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64i_v3", "tier": "Standard", "size": "E64i_v3", "family": "standardEIv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64i_v4_SPECIAL": {"location": "westus2", "vm_size": "Standard_E64i_v4_SPECIAL", "capability": {"type": "requirement", "name": "westus2_Standard_E64i_v4_SPECIAL", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64i_v4_SPECIAL", "tier": "Standard", "size": "E64i_v4_SPECIAL", "family": "standardEIv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64s_v3": {"location": "westus2", "vm_size": "Standard_E64s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64s_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64s_v3", "tier": "Standard", "size": "E64s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "884736"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64s_v4": {"location": "westus2", "vm_size": "Standard_E64s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64s_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64s_v4", "tier": "Standard", "size": "E64s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64s_v5": {"location": "westus2", "vm_size": "Standard_E64s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64s_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64s_v5", "tier": "Standard", "size": "E64s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64_v3": {"location": "westus2", "vm_size": "Standard_E64_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E64_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 442368, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64_v3", "tier": "Standard", "size": "E64_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1638400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "432"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1048576000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64_v4": {"location": "westus2", "vm_size": "Standard_E64_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E64_v4", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64_v4", "tier": "Standard", "size": "E64_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E64_v5": {"location": "westus2", "vm_size": "Standard_E64_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E64_v5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E64_v5", "tier": "Standard", "size": "E64_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1819279360"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E8-2ads_v5": {"location": "westus2", "vm_size": "Standard_E8-2ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2ads_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2ads_v5", "tier": "Standard", "size": "E8-2ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2as_v4": {"location": "westus2", "vm_size": "Standard_E8-2as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2as_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2as_v4", "tier": "Standard", "size": "E8-2as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2as_v5": {"location": "westus2", "vm_size": "Standard_E8-2as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2as_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2as_v5", "tier": "Standard", "size": "E8-2as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2ds_v4": {"location": "westus2", "vm_size": "Standard_E8-2ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2ds_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2ds_v4", "tier": "Standard", "size": "E8-2ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2ds_v5": {"location": "westus2", "vm_size": "Standard_E8-2ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2ds_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2ds_v5", "tier": "Standard", "size": "E8-2ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E8ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2s_v3": {"location": "westus2", "vm_size": "Standard_E8-2s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2s_v3", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2s_v3", "tier": "Standard", "size": "E8-2s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E8s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-2s_v4": {"location": "westus2", "vm_size": "Standard_E8-2s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2s_v4", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2s_v4", "tier": "Standard", "size": "E8-2s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_E8-2s_v5": {"location": "westus2", "vm_size": "Standard_E8-2s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-2s_v5", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-2s_v5", "tier": "Standard", "size": "E8-2s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ParentSize", "value": "Standard_E8s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4ads_v5": {"location": "westus2", "vm_size": "Standard_E8-4ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4ads_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4ads_v5", "tier": "Standard", "size": "E8-4ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4as_v4": {"location": "westus2", "vm_size": "Standard_E8-4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4as_v4", "tier": "Standard", "size": "E8-4as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4as_v5": {"location": "westus2", "vm_size": "Standard_E8-4as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4as_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4as_v5", "tier": "Standard", "size": "E8-4as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E8as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4ds_v4": {"location": "westus2", "vm_size": "Standard_E8-4ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4ds_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4ds_v4", "tier": "Standard", "size": "E8-4ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8ds_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4ds_v5": {"location": "westus2", "vm_size": "Standard_E8-4ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4ds_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4ds_v5", "tier": "Standard", "size": "E8-4ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E8ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4s_v3": {"location": "westus2", "vm_size": "Standard_E8-4s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4s_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4s_v3", "tier": "Standard", "size": "E8-4s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_E8s_v3"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4s_v4": {"location": "westus2", "vm_size": "Standard_E8-4s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4s_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4s_v4", "tier": "Standard", "size": "E8-4s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "ParentSize", "value": "Standard_E8s_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8-4s_v5": {"location": "westus2", "vm_size": "Standard_E8-4s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8-4s_v5", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8-4s_v5", "tier": "Standard", "size": "E8-4s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ParentSize", "value": "Standard_E8s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E80ids_v4": {"location": "westus2", "vm_size": "Standard_E80ids_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E80ids_v4", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E80ids_v4", "tier": "Standard", "size": "E80ids_v4", "family": "standardXEIDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4362240"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E80is_v4": {"location": "westus2", "vm_size": "Standard_E80is_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E80is_v4", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E80is_v4", "tier": "Standard", "size": "E80is_v4", "family": "standardXEISv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E8ads_v5": {"location": "westus2", "vm_size": "Standard_E8ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8ads_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ads_v5", "tier": "Standard", "size": "E8ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8as_v4": {"location": "westus2", "vm_size": "Standard_E8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8as_v4", "tier": "Standard", "size": "E8as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8as_v5": {"location": "westus2", "vm_size": "Standard_E8as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8as_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8as_v5", "tier": "Standard", "size": "E8as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "209715200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E8as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E8as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8as_v5_Promo", "tier": "Standard", "size": "E8as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8a_v4": {"location": "westus2", "vm_size": "Standard_E8a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8a_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8a_v4", "tier": "Standard", "size": "E8a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8bds_v5": {"location": "westus2", "vm_size": "Standard_E8bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8bds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8bds_v5", "tier": "Standard", "size": "E8bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "37500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "UncachedDiskIOPS", "value": "22000"}, {"name": "UncachedDiskBytesPerSecond", "value": "625000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8bs_v5": {"location": "westus2", "vm_size": "Standard_E8bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8bs_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8bs_v5", "tier": "Standard", "size": "E8bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "37500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "UncachedDiskIOPS", "value": "22000"}, {"name": "UncachedDiskBytesPerSecond", "value": "625000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8darm_V3": {"location": "westus2", "vm_size": "Standard_E8darm_V3", "capability": {"type": "requirement", "name": "westus2_Standard_E8darm_V3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8darm_V3", "tier": "Standard", "size": "E8darm_V3", "family": "standardARMv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "485000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "485000000"}, {"name": "CachedDiskBytes", "value": "200000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ds_v4": {"location": "westus2", "vm_size": "Standard_E8ds_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8ds_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ds_v4", "tier": "Standard", "size": "E8ds_v4", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ds_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E8ds_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E8ds_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 64512, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ds_v4_ADHType1", "tier": "Standard", "size": "E8ds_v4_ADHType1", "family": "standardEDSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "63"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ds_v5": {"location": "westus2", "vm_size": "Standard_E8ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8ds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ds_v5", "tier": "Standard", "size": "E8ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8d_v4": {"location": "westus2", "vm_size": "Standard_E8d_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8d_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8d_v4", "tier": "Standard", "size": "E8d_v4", "family": "standardEDv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "484442112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "242221056"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8d_v5": {"location": "westus2", "vm_size": "Standard_E8d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8d_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8d_v5", "tier": "Standard", "size": "E8d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8pds_v5": {"location": "westus2", "vm_size": "Standard_E8pds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8pds_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8pds_v5", "tier": "Standard", "size": "E8pds_v5", "family": "standardEPDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "307200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8ps_v5": {"location": "westus2", "vm_size": "Standard_E8ps_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8ps_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "Arm64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8ps_v5", "tier": "Standard", "size": "E8ps_v5", "family": "standardEPSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "Arm64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "38000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "500000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "500000000"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v3": {"location": "westus2", "vm_size": "Standard_E8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v3", "tier": "Standard", "size": "E8s_v3", "family": "standardESv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v4": {"location": "westus2", "vm_size": "Standard_E8s_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v4", "tier": "Standard", "size": "E8s_v4", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v4_ADHType1": {"location": "westus2", "vm_size": "Standard_E8s_v4_ADHType1", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v4_ADHType1", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 64512, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v4_ADHType1", "tier": "Standard", "size": "E8s_v4_ADHType1", "family": "standardESv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "63"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "0"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8s_v5": {"location": "westus2", "vm_size": "Standard_E8s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8s_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8s_v5", "tier": "Standard", "size": "E8s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8_v3": {"location": "westus2", "vm_size": "Standard_E8_v3", "capability": {"type": "requirement", "name": "westus2_Standard_E8_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8_v3", "tier": "Standard", "size": "E8_v3", "family": "standardEv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "204800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8_v4": {"location": "westus2", "vm_size": "Standard_E8_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E8_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8_v4", "tier": "Standard", "size": "E8_v4", "family": "standardEv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "214748364800"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E8_v5": {"location": "westus2", "vm_size": "Standard_E8_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E8_v5", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E8_v5", "tier": "Standard", "size": "E8_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "77000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "304087040"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_E96-24ads_v5": {"location": "westus2", "vm_size": "Standard_E96-24ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24ads_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24ads_v5", "tier": "Standard", "size": "E96-24ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24as_v4": {"location": "westus2", "vm_size": "Standard_E96-24as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24as_v4", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24as_v4", "tier": "Standard", "size": "E96-24as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24as_v5": {"location": "westus2", "vm_size": "Standard_E96-24as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24as_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24as_v5", "tier": "Standard", "size": "E96-24as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24ds_v5": {"location": "westus2", "vm_size": "Standard_E96-24ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24ds_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24ds_v5", "tier": "Standard", "size": "E96-24ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ParentSize", "value": "Standard_E96ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-24s_v5": {"location": "westus2", "vm_size": "Standard_E96-24s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-24s_v5", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-24s_v5", "tier": "Standard", "size": "E96-24s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ParentSize", "value": "Standard_E96s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48ads_v5": {"location": "westus2", "vm_size": "Standard_E96-48ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48ads_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48ads_v5", "tier": "Standard", "size": "E96-48ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96ads_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48as_v4": {"location": "westus2", "vm_size": "Standard_E96-48as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48as_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48as_v4", "tier": "Standard", "size": "E96-48as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717990000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48as_v5": {"location": "westus2", "vm_size": "Standard_E96-48as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48as_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48as_v5", "tier": "Standard", "size": "E96-48as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "230"}, {"name": "ParentSize", "value": "Standard_E96as_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48ds_v5": {"location": "westus2", "vm_size": "Standard_E96-48ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48ds_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48ds_v5", "tier": "Standard", "size": "E96-48ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ParentSize", "value": "Standard_E96ds_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96-48s_v5": {"location": "westus2", "vm_size": "Standard_E96-48s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96-48s_v5", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96-48s_v5", "tier": "Standard", "size": "E96-48s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ParentSize", "value": "Standard_E96s_v5"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ads_v5": {"location": "westus2", "vm_size": "Standard_E96ads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96ads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ads_v5", "tier": "Standard", "size": "E96ads_v5", "family": "standardEADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96as_v4": {"location": "westus2", "vm_size": "Standard_E96as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96as_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96as_v4", "tier": "Standard", "size": "E96as_v4", "family": "standardEASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1717986918400"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96as_v5": {"location": "westus2", "vm_size": "Standard_E96as_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96as_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96as_v5", "tier": "Standard", "size": "E96as_v5", "family": "standardEASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1677721600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96as_v5_Promo": {"location": "westus2", "vm_size": "Standard_E96as_v5_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_E96as_v5_Promo", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96as_v5_Promo", "tier": "Standard", "size": "E96as_v5_Promo", "family": "standardEASv5PromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96a_v4": {"location": "westus2", "vm_size": "Standard_E96a_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96a_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96a_v4", "tier": "Standard", "size": "E96a_v4", "family": "standardEAv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96bds_v5": {"location": "westus2", "vm_size": "Standard_E96bds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96bds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96bds_v5", "tier": "Standard", "size": "E96bds_v5", "family": "standardEBDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96bs_v5": {"location": "westus2", "vm_size": "Standard_E96bs_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96bs_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96bs_v5", "tier": "Standard", "size": "E96bs_v5", "family": "standardEBSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "450000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ds_v5": {"location": "westus2", "vm_size": "Standard_E96ds_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96ds_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ds_v5", "tier": "Standard", "size": "E96ds_v5", "family": "standardEDSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96d_v5": {"location": "westus2", "vm_size": "Standard_E96d_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96d_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96d_v5", "tier": "Standard", "size": "E96d_v5", "family": "standardEDv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3686400"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96iads_v5": {"location": "westus2", "vm_size": "Standard_E96iads_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96iads_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96iads_v5", "tier": "Standard", "size": "E96iads_v5", "family": "standardEIADSv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2457600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ias_v4": {"location": "westus2", "vm_size": "Standard_E96ias_v4", "capability": {"type": "requirement", "name": "westus2_Standard_E96ias_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ias_v4", "tier": "Standard", "size": "E96ias_v4", "family": "standardEIASv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "192000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1070000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1070000000"}, {"name": "CachedDiskBytes", "value": "19200000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1260000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96ias_v5": {"location": "westus2", "vm_size": "Standard_E96ias_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96ias_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96ias_v5", "tier": "Standard", "size": "E96ias_v5", "family": "standardEIASv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "230"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96s_v5": {"location": "westus2", "vm_size": "Standard_E96s_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96s_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96s_v5", "tier": "Standard", "size": "E96s_v5", "family": "standardESv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_E96_v5": {"location": "westus2", "vm_size": "Standard_E96_v5", "capability": {"type": "requirement", "name": "westus2_Standard_E96_v5", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 688128, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_E96_v5", "tier": "Standard", "size": "E96_v5", "family": "standardEv5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "672"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4194304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4194304000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2726297600"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F1": {"location": "westus2", "vm_size": "Standard_F1", "capability": {"type": "requirement", "name": "westus2_Standard_F1", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F1", "tier": "Standard", "size": "F1", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "49152000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "24576000"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F16": {"location": "westus2", "vm_size": "Standard_F16", "capability": {"type": "requirement", "name": "westus2_Standard_F16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F16", "tier": "Standard", "size": "F16", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F16s": {"location": "westus2", "vm_size": "Standard_F16s", "capability": {"type": "requirement", "name": "westus2_Standard_F16s", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F16s", "tier": "Standard", "size": "F16s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "206158430208"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "805306368"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F16s_v2": {"location": "westus2", "vm_size": "Standard_F16s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F16s_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F16s_v2", "tier": "Standard", "size": "F16s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "262144000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "262144000"}, {"name": "CachedDiskBytes", "value": "274877906944"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_F1s": {"location": "westus2", "vm_size": "Standard_F1s", "capability": {"type": "requirement", "name": "westus2_Standard_F1s", "is_default": false, "node_count": 1, "core_count": 1, "memory_mb": 2048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F1s", "tier": "Standard", "size": "F1s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "1"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "1"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "33554432"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "33554432"}, {"name": "CachedDiskBytes", "value": "12884901888"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "50331648"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2": {"location": "westus2", "vm_size": "Standard_F2", "capability": {"type": "requirement", "name": "westus2_Standard_F2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2", "tier": "Standard", "size": "F2", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2hs_v2": {"location": "westus2", "vm_size": "Standard_F2hs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F2hs_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2hs_v2", "tier": "Standard", "size": "F2hs_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32768000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32768000"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "48000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2s": {"location": "westus2", "vm_size": "Standard_F2s", "capability": {"type": "requirement", "name": "westus2_Standard_F2s", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2s", "tier": "Standard", "size": "F2s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "25769803776"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "100663296"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F2s_v2": {"location": "westus2", "vm_size": "Standard_F2s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F2s_v2", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 4096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F2s_v2", "tier": "Standard", "size": "F2s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "32505856"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "32505856"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "3200"}, {"name": "UncachedDiskBytesPerSecond", "value": "49283072"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F32s_v2": {"location": "westus2", "vm_size": "Standard_F32s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F32s_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F32s_v2", "tier": "Standard", "size": "F32s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "549755813888"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F4": {"location": "westus2", "vm_size": "Standard_F4", "capability": {"type": "requirement", "name": "westus2_Standard_F4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F4", "tier": "Standard", "size": "F4", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_F48s_v2": {"location": "westus2", "vm_size": "Standard_F48s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F48s_v2", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 98304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F48s_v2", "tier": "Standard", "size": "F48s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "96"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "824633720832"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F4s": {"location": "westus2", "vm_size": "Standard_F4s", "capability": {"type": "requirement", "name": "westus2_Standard_F4s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F4s", "tier": "Standard", "size": "F4s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "51539607552"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_F4s_v2": {"location": "westus2", "vm_size": "Standard_F4s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F4s_v2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 8192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F4s_v2", "tier": "Standard", "size": "F4s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "8"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "65536000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "65536000"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_F64s_v2": {"location": "westus2", "vm_size": "Standard_F64s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F64s_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F64s_v2", "tier": "Standard", "size": "F64s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1073741824"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1073741824"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F72s_v2": {"location": "westus2", "vm_size": "Standard_F72s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F72s_v2", "is_default": false, "node_count": 1, "core_count": 72, "memory_mb": 147456, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F72s_v2", "tier": "Standard", "size": "F72s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "589824"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "72"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "144"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "72"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "144000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1207959552"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1207959552"}, {"name": "CachedDiskBytes", "value": "1632087572480"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F8": {"location": "westus2", "vm_size": "Standard_F8", "capability": {"type": "requirement", "name": "westus2_Standard_F8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F8", "tier": "Standard", "size": "F8", "family": "standardFFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F8s": {"location": "westus2", "vm_size": "Standard_F8s", "capability": {"type": "requirement", "name": "westus2_Standard_F8s", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F8s", "tier": "Standard", "size": "F8s", "family": "standardFSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "32768"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "210"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "103079215104"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "402653184"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_F8s_v2": {"location": "westus2", "vm_size": "Standard_F8s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_F8s_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 16384, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_F8s_v2", "tier": "Standard", "size": "F8s_v2", "family": "standardFSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "16"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "195"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "131072000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "131072000"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_FX12mds": {"location": "westus2", "vm_size": "Standard_FX12mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX12mds", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 258048, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX12mds", "tier": "Standard", "size": "FX12mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "516096"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "252"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "163500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1028653056"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1028653056"}, {"name": "CachedDiskBytes", "value": "579821000000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "314572800"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_FX24mds": {"location": "westus2", "vm_size": "Standard_FX24mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX24mds", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 516096, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX24mds", "tier": "Standard", "size": "FX24mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1032192"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "504"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "327000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "2057306112"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "2057306112"}, {"name": "CachedDiskBytes", "value": "1159640000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "629145600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_FX36mds": {"location": "westus2", "vm_size": "Standard_FX36mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX36mds", "is_default": false, "node_count": 1, "core_count": 36, "memory_mb": 774144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX36mds", "tier": "Standard", "size": "FX36mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1548288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "36"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "756"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "36"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "490500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3085959168"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3085959168"}, {"name": "CachedDiskBytes", "value": "1739460000000"}, {"name": "UncachedDiskIOPS", "value": "60000"}, {"name": "UncachedDiskBytesPerSecond", "value": "943718400"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_FX48mds": {"location": "westus2", "vm_size": "Standard_FX48mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX48mds", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 1032192, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX48mds", "tier": "Standard", "size": "FX48mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2064384"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1008"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "615000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3871342592"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3871342592"}, {"name": "CachedDiskBytes", "value": "2319280000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1258291200"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_FX4mds": {"location": "westus2", "vm_size": "Standard_FX4mds", "capability": {"type": "requirement", "name": "westus2_Standard_FX4mds", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 86016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_FX4mds", "tier": "Standard", "size": "FX4mds", "family": "standardFXMDVSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "172032"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "84"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "310"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "54500"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "342884352"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "342884352"}, {"name": "CachedDiskBytes", "value": "193274000000"}, {"name": "UncachedDiskIOPS", "value": "6700"}, {"name": "UncachedDiskBytesPerSecond", "value": "104857600"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_G1": {"location": "westus2", "vm_size": "Standard_G1", "capability": {"type": "requirement", "name": "westus2_Standard_G1", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G1", "tier": "Standard", "size": "G1", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "393216"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "6000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "98304000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "49152000"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "125000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G2": {"location": "westus2", "vm_size": "Standard_G2", "capability": {"type": "requirement", "name": "westus2_Standard_G2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G2", "tier": "Standard", "size": "G2", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "786432"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "12000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "196608000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "98304000"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "250000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G3": {"location": "westus2", "vm_size": "Standard_G3", "capability": {"type": "requirement", "name": "westus2_Standard_G3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G3", "tier": "Standard", "size": "G3", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1572864"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "393216000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "196608000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G4": {"location": "westus2", "vm_size": "Standard_G4", "capability": {"type": "requirement", "name": "westus2_Standard_G4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G4", "tier": "Standard", "size": "G4", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3145728"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "786432000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "393216000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_G5": {"location": "westus2", "vm_size": "Standard_G5", "capability": {"type": "requirement", "name": "westus2_Standard_G5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_G5", "tier": "Standard", "size": "G5", "family": "standardGFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "6291456"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "PaaS,IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1572864000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "786432000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS1": {"location": "westus2", "vm_size": "Standard_GS1", "capability": {"type": "requirement", "name": "westus2_Standard_GS1", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS1", "tier": "Standard", "size": "GS1", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "57344"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "2"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "283467841536"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS2": {"location": "westus2", "vm_size": "Standard_GS2", "capability": {"type": "requirement", "name": "westus2_Standard_GS2", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS2", "tier": "Standard", "size": "GS2", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "114688"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "566935683072"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS3": {"location": "westus2", "vm_size": "Standard_GS3", "capability": {"type": "requirement", "name": "westus2_Standard_GS3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS3", "tier": "Standard", "size": "GS3", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "229376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "1133871366144"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS4": {"location": "westus2", "vm_size": "Standard_GS4", "capability": {"type": "requirement", "name": "westus2_Standard_GS4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS4", "tier": "Standard", "size": "GS4", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "458752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "2267742732288"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS4-4": {"location": "westus2", "vm_size": "Standard_GS4-4", "capability": {"type": "requirement", "name": "westus2_Standard_GS4-4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS4-4", "tier": "Standard", "size": "GS4-4", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "458752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "2267742732288"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS4-8": {"location": "westus2", "vm_size": "Standard_GS4-8", "capability": {"type": "requirement", "name": "westus2_Standard_GS4-8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS4-8", "tier": "Standard", "size": "GS4-8", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "458752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "2267742732288"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS5": {"location": "westus2", "vm_size": "Standard_GS5", "capability": {"type": "requirement", "name": "westus2_Standard_GS5", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS5", "tier": "Standard", "size": "GS5", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "917504"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "4535485464576"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS5-16": {"location": "westus2", "vm_size": "Standard_GS5-16", "capability": {"type": "requirement", "name": "westus2_Standard_GS5-16", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS5-16", "tier": "Standard", "size": "GS5-16", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "917504"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS5"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "4535485464576"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_GS5-8": {"location": "westus2", "vm_size": "Standard_GS5-8", "capability": {"type": "requirement", "name": "westus2_Standard_GS5-8", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_GS5-8", "tier": "Standard", "size": "GS5-8", "family": "standardGSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "917504"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "ParentSize", "value": "Standard_GS5"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "4535485464576"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_HB120-16rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-16rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-16rs_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-16rs_v2", "tier": "Standard", "size": "HB120-16rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120-32rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-32rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-32rs_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-32rs_v2", "tier": "Standard", "size": "HB120-32rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120-64rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-64rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-64rs_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-64rs_v2", "tier": "Standard", "size": "HB120-64rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120-96rs_v2": {"location": "westus2", "vm_size": "Standard_HB120-96rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120-96rs_v2", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120-96rs_v2", "tier": "Standard", "size": "HB120-96rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "ACUs", "value": "330"}, {"name": "ParentSize", "value": "Standard_HB120rs_v2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "183000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "10307921510"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "9663676416"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HB120rs_v2": {"location": "westus2", "vm_size": "Standard_HB120rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_HB120rs_v2", "is_default": false, "node_count": 1, "core_count": 120, "memory_mb": 466944, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HB120rs_v2", "tier": "Standard", "size": "HB120rs_v2", "family": "standardHBrsv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "120"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "456"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "120"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "137438953472"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915527"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HC44-16rs": {"location": "westus2", "vm_size": "Standard_HC44-16rs", "capability": {"type": "requirement", "name": "westus2_Standard_HC44-16rs", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HC44-16rs", "tier": "Standard", "size": "HC44-16rs", "family": "standardHCSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "716800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "44"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ParentSize", "value": "Standard_HC44rs"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1020"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "20971520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "CachedDiskBytes", "value": "23622320128"}, {"name": "UncachedDiskIOPS", "value": "1632"}, {"name": "UncachedDiskBytesPerSecond", "value": "24480000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HC44-32rs": {"location": "westus2", "vm_size": "Standard_HC44-32rs", "capability": {"type": "requirement", "name": "westus2_Standard_HC44-32rs", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HC44-32rs", "tier": "Standard", "size": "HC44-32rs", "family": "standardHCSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "716800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "44"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ParentSize", "value": "Standard_HC44rs"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "1020"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "20971520"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "20971520"}, {"name": "CachedDiskBytes", "value": "23622320128"}, {"name": "UncachedDiskIOPS", "value": "1632"}, {"name": "UncachedDiskBytesPerSecond", "value": "24480000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_HC44rs": {"location": "westus2", "vm_size": "Standard_HC44rs", "capability": {"type": "requirement", "name": "westus2_Standard_HC44rs", "is_default": false, "node_count": 1, "core_count": 44, "memory_mb": 360448, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_HC44rs", "tier": "Standard", "size": "HC44rs", "family": "standardHCSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "716800"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "44"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "352"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L104is_v3": {"location": "westus2", "vm_size": "Standard_L104is_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L104is_v3", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 917504, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L104is_v3", "tier": "Standard", "size": "L104is_v3", "family": "standardLISv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "104"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "896"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L112ias_v3": {"location": "westus2", "vm_size": "Standard_L112ias_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L112ias_v3", "is_default": false, "node_count": 1, "core_count": 112, "memory_mb": 933888, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L112ias_v3", "tier": "Standard", "size": "L112ias_v3", "family": "standardLIASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "112"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "912"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "112"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L16as_v3": {"location": "westus2", "vm_size": "Standard_L16as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L16as_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16as_v3", "tier": "Standard", "size": "L16as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L16s": {"location": "westus2", "vm_size": "Standard_L16s", "capability": {"type": "requirement", "name": "westus2_Standard_L16s", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16s", "tier": "Standard", "size": "L16s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2874368"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L16s_v2": {"location": "westus2", "vm_size": "Standard_L16s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L16s_v2", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 2}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16s_v2", "tier": "Standard", "size": "L16s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "167772160"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "167772160"}, {"name": "UncachedDiskIOPS", "value": "16000"}, {"name": "UncachedDiskBytesPerSecond", "value": "335544320"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_L16s_v3": {"location": "westus2", "vm_size": "Standard_L16s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L16s_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 131072, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L16s_v3", "tier": "Standard", "size": "L16s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "163840"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "128"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "160000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "160000000"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L32as_v3": {"location": "westus2", "vm_size": "Standard_L32as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L32as_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32as_v3", "tier": "Standard", "size": "L32as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "320000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "320000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L32s": {"location": "westus2", "vm_size": "Standard_L32s", "capability": {"type": "requirement", "name": "westus2_Standard_L32s", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32s", "tier": "Standard", "size": "L32s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "5765120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L32s_v2": {"location": "westus2", "vm_size": "Standard_L32s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L32s_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 4}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32s_v2", "tier": "Standard", "size": "L32s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "335544320"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "335544320"}, {"name": "UncachedDiskIOPS", "value": "32000"}, {"name": "UncachedDiskBytesPerSecond", "value": "671088640"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L32s_v3": {"location": "westus2", "vm_size": "Standard_L32s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L32s_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L32s_v3", "tier": "Standard", "size": "L32s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "327680"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "320000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "320000000"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "865000000"}, {"name": "NvmeDiskSizeInMiB", "value": "7324216"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L48as_v3": {"location": "westus2", "vm_size": "Standard_L48as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L48as_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L48as_v3", "tier": "Standard", "size": "L48as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "480000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "480000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "NvmeDiskSizeInMiB", "value": "10986324"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L48s_v2": {"location": "westus2", "vm_size": "Standard_L48s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L48s_v2", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 6}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L48s_v2", "tier": "Standard", "size": "L48s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "503316480"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "503316480"}, {"name": "UncachedDiskIOPS", "value": "48000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1006632960"}, {"name": "NvmeDiskSizeInMiB", "value": "10986324"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L48s_v3": {"location": "westus2", "vm_size": "Standard_L48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 393216, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L48s_v3", "tier": "Standard", "size": "L48s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "491520"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "384"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "480000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "480000000"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1315000000"}, {"name": "NvmeDiskSizeInMiB", "value": "10986324"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L4s": {"location": "westus2", "vm_size": "Standard_L4s", "capability": {"type": "requirement", "name": "westus2_Standard_L4s", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 32768, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L4s", "tier": "Standard", "size": "L4s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "694272"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "32"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L64as_v3": {"location": "westus2", "vm_size": "Standard_L64as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L64as_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L64as_v3", "tier": "Standard", "size": "L64as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "655360"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "640000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "640000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1280000000"}, {"name": "NvmeDiskSizeInMiB", "value": "14648432"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L64s_v2": {"location": "westus2", "vm_size": "Standard_L64s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L64s_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 8}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L64s_v2", "tier": "Standard", "size": "L64s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "655360"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "671088640"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "671088640"}, {"name": "UncachedDiskIOPS", "value": "64000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1342177280"}, {"name": "NvmeDiskSizeInMiB", "value": "14648432"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L64s_v3": {"location": "westus2", "vm_size": "Standard_L64s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L64s_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L64s_v3", "tier": "Standard", "size": "L64s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "655360"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "640000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "640000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1735000000"}, {"name": "NvmeDiskSizeInMiB", "value": "14648432"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L80as_v3": {"location": "westus2", "vm_size": "Standard_L80as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L80as_v3", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L80as_v3", "tier": "Standard", "size": "L80as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1400000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L80s_v2": {"location": "westus2", "vm_size": "Standard_L80s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L80s_v2", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 10}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L80s_v2", "tier": "Standard", "size": "L80s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1468006400"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L80s_v3": {"location": "westus2", "vm_size": "Standard_L80s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L80s_v3", "is_default": false, "node_count": 1, "core_count": 80, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L80s_v3", "tier": "Standard", "size": "L80s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "80"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "80"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2160000000"}, {"name": "NvmeDiskSizeInMiB", "value": "18310540"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L88is_v2": {"location": "westus2", "vm_size": "Standard_L88is_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L88is_v2", "is_default": false, "node_count": 1, "core_count": 88, "memory_mb": 655360, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L88is_v2", "tier": "Standard", "size": "L88is_v2", "family": "standardLIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "819200"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "88"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "640"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "vCPUsAvailable", "value": "88"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "3800000"}, {"name": "CachedDiskBytes", "value": "32212254720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1468006400"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_L8as_v3": {"location": "westus2", "vm_size": "Standard_L8as_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L8as_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8as_v3", "tier": "Standard", "size": "L8as_v3", "family": "standardLASv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "80000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "80000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "200000000"}, {"name": "NvmeDiskSizeInMiB", "value": "1831054"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_L8s": {"location": "westus2", "vm_size": "Standard_L8s", "capability": {"type": "requirement", "name": "westus2_Standard_L8s", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8s", "tier": "Standard", "size": "L8s", "family": "standardLSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1421312"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "180"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_L8s_v2": {"location": "westus2", "vm_size": "Standard_L8s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_L8s_v2", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Nvme", "disk_count": 1}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8s_v2", "tier": "Standard", "size": "L8s_v2", "family": "standardLSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "83886080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "83886080"}, {"name": "UncachedDiskIOPS", "value": "8000"}, {"name": "UncachedDiskBytesPerSecond", "value": "167772160"}, {"name": "NvmeDiskSizeInMiB", "value": "1831054"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_L8s_v3": {"location": "westus2", "vm_size": "Standard_L8s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_L8s_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 65536, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_L8s_v3", "tier": "Standard", "size": "L8s_v3", "family": "standardLSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "81920"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "True"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "64"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "4000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "80000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "80000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "290000000"}, {"name": "NvmeDiskSizeInMiB", "value": "1831054"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_M128": {"location": "westus2", "vm_size": "Standard_M128", "capability": {"type": "requirement", "name": "westus2_Standard_M128", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2048000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128", "tier": "Standard", "size": "M128", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2000"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "2637109919744"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128-32ms": {"location": "westus2", "vm_size": "Standard_M128-32ms", "capability": {"type": "requirement", "name": "westus2_Standard_M128-32ms", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128-32ms", "tier": "Standard", "size": "M128-32ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M128ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128-64ms": {"location": "westus2", "vm_size": "Standard_M128-64ms", "capability": {"type": "requirement", "name": "westus2_Standard_M128-64ms", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128-64ms", "tier": "Standard", "size": "M128-64ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M128ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128dms_v2": {"location": "westus2", "vm_size": "Standard_M128dms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128dms_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128dms_v2", "tier": "Standard", "size": "M128dms_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M128ds_v2": {"location": "westus2", "vm_size": "Standard_M128ds_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128ds_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128ds_v2", "tier": "Standard", "size": "M128ds_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M128m": {"location": "westus2", "vm_size": "Standard_M128m", "capability": {"type": "requirement", "name": "westus2_Standard_M128m", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128m", "tier": "Standard", "size": "M128m", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "16384000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "2637109919744"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128ms": {"location": "westus2", "vm_size": "Standard_M128ms", "capability": {"type": "requirement", "name": "westus2_Standard_M128ms", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3891200, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128ms", "tier": "Standard", "size": "M128ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "3800"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128ms_v2": {"location": "westus2", "vm_size": "Standard_M128ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128ms_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128ms_v2", "tier": "Standard", "size": "M128ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M128s": {"location": "westus2", "vm_size": "Standard_M128s", "capability": {"type": "requirement", "name": "westus2_Standard_M128s", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2048000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128s", "tier": "Standard", "size": "M128s", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4096000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "2000"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M128s_v2": {"location": "westus2", "vm_size": "Standard_M128s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M128s_v2", "is_default": false, "node_count": 1, "core_count": 128, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M128s_v2", "tier": "Standard", "size": "M128s_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "128"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "128"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M12ds_v3": {"location": "westus2", "vm_size": "Standard_M12ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M12ds_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 245760, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M12ds_v3", "tier": "Standard", "size": "M12ds_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "240"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "848256040960"}, {"name": "UncachedDiskIOPS", "value": "16250"}, {"name": "UncachedDiskBytesPerSecond", "value": "390000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_M12s_v3": {"location": "westus2", "vm_size": "Standard_M12s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 245760, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M12s_v3", "tier": "Standard", "size": "M12s_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "240"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "100000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "100000000"}, {"name": "CachedDiskBytes", "value": "848256040960"}, {"name": "UncachedDiskIOPS", "value": "16250"}, {"name": "UncachedDiskBytesPerSecond", "value": "390000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_M144ds_2_v3": {"location": "westus2", "vm_size": "Standard_M144ds_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144ds_2_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144ds_2_v3", "tier": "Standard", "size": "M144ds_2_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M144ds_4_v3": {"location": "westus2", "vm_size": "Standard_M144ds_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144ds_4_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 3670016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144ds_4_v3", "tier": "Standard", "size": "M144ds_4_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3584"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M144s_2_v3": {"location": "westus2", "vm_size": "Standard_M144s_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144s_2_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144s_2_v3", "tier": "Standard", "size": "M144s_2_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M144s_4_v3": {"location": "westus2", "vm_size": "Standard_M144s_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M144s_4_v3", "is_default": false, "node_count": 1, "core_count": 144, "memory_mb": 3670016, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M144s_4_v3", "tier": "Standard", "size": "M144s_4_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "144"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3584"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "12"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "144"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M16-4ms": {"location": "westus2", "vm_size": "Standard_M16-4ms", "capability": {"type": "requirement", "name": "westus2_Standard_M16-4ms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 448000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M16-4ms", "tier": "Standard", "size": "M16-4ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "437.5"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "2"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M16ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "1704028274688"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M16-8ms": {"location": "westus2", "vm_size": "Standard_M16-8ms", "capability": {"type": "requirement", "name": "westus2_Standard_M16-8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 448000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M16-8ms", "tier": "Standard", "size": "M16-8ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "437.5"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "2"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M16ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "1704028274688"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M16ms": {"location": "westus2", "vm_size": "Standard_M16ms", "capability": {"type": "requirement", "name": "westus2_Standard_M16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 448000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M16ms", "tier": "Standard", "size": "M16ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "512000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "437.5"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "2"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "209715200"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "209715200"}, {"name": "CachedDiskBytes", "value": "1704028274688"}, {"name": "UncachedDiskIOPS", "value": "10000"}, {"name": "UncachedDiskBytesPerSecond", "value": "262144000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M176bds_3_v3": {"location": "westus2", "vm_size": "Standard_M176bds_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176bds_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176bds_3_v3", "tier": "Standard", "size": "M176bds_3_v3", "family": "StandardMBDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176bs_3_v3": {"location": "westus2", "vm_size": "Standard_M176bs_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176bs_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176bs_3_v3", "tier": "Standard", "size": "M176bs_3_v3", "family": "StandardMBSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176ds_3_v3": {"location": "westus2", "vm_size": "Standard_M176ds_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176ds_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176ds_3_v3", "tier": "Standard", "size": "M176ds_3_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176ds_4_v3": {"location": "westus2", "vm_size": "Standard_M176ds_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176ds_4_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176ds_4_v3", "tier": "Standard", "size": "M176ds_4_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176s_3_v3": {"location": "westus2", "vm_size": "Standard_M176s_3_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176s_3_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 2861056, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176s_3_v3", "tier": "Standard", "size": "M176s_3_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "2794"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M176s_4_v3": {"location": "westus2", "vm_size": "Standard_M176s_4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M176s_4_v3", "is_default": false, "node_count": 1, "core_count": 176, "memory_mb": 3985408, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M176s_4_v3", "tier": "Standard", "size": "M176s_4_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "176"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "3892"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "176"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192idms_v2": {"location": "westus2", "vm_size": "Standard_M192idms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192idms_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 4194304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192idms_v2", "tier": "Standard", "size": "M192idms_v2", "family": "standardMIDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4096"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192ids_v2": {"location": "westus2", "vm_size": "Standard_M192ids_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192ids_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192ids_v2", "tier": "Standard", "size": "M192ids_v2", "family": "standardMIDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192ims_v2": {"location": "westus2", "vm_size": "Standard_M192ims_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192ims_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 4194304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192ims_v2", "tier": "Standard", "size": "M192ims_v2", "family": "standardMISMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "4096"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192is_v2": {"location": "westus2", "vm_size": "Standard_M192is_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192is_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 2097152, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "isolated_resource"}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192is_v2", "tier": "Standard", "size": "M192is_v2", "family": "standardMISMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2048"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M192ms_v2": {"location": "westus2", "vm_size": "Standard_M192ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192ms_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 4194304, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192ms_v2", "tier": "Standard", "size": "M192ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "4096"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13600000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M192s_v2": {"location": "westus2", "vm_size": "Standard_M192s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M192s_v2", "is_default": false, "node_count": 1, "core_count": 192, "memory_mb": 2199019, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M192s_v2", "tier": "Standard", "size": "M192s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "15393163"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "192"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2147.48"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "192"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-104ms_v2": {"location": "westus2", "vm_size": "Standard_M208-104ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-104ms_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-104ms_v2", "tier": "Standard", "size": "M208-104ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M208ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-104s_v2": {"location": "westus2", "vm_size": "Standard_M208-104s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-104s_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 2918400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-104s_v2", "tier": "Standard", "size": "M208-104s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2850"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M208s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-52ms_v2": {"location": "westus2", "vm_size": "Standard_M208-52ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-52ms_v2", "is_default": false, "node_count": 1, "core_count": 52, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-52ms_v2", "tier": "Standard", "size": "M208-52ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "52"}, {"name": "ParentSize", "value": "Standard_M208ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208-52s_v2": {"location": "westus2", "vm_size": "Standard_M208-52s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208-52s_v2", "is_default": false, "node_count": 1, "core_count": 52, "memory_mb": 2918400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208-52s_v2", "tier": "Standard", "size": "M208-52s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2850"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "52"}, {"name": "ParentSize", "value": "Standard_M208s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "4398047000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208ms_v2": {"location": "westus2", "vm_size": "Standard_M208ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208ms_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208ms_v2", "tier": "Standard", "size": "M208ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M208s_v2": {"location": "westus2", "vm_size": "Standard_M208s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M208s_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 2918400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M208s_v2", "tier": "Standard", "size": "M208s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "208"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "2850"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M24ds_v3": {"location": "westus2", "vm_size": "Standard_M24ds_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M24ds_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 491520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M24ds_v3", "tier": "Standard", "size": "M24ds_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "480"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "200000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "200000000"}, {"name": "CachedDiskBytes", "value": "1696512081920"}, {"name": "UncachedDiskIOPS", "value": "32500"}, {"name": "UncachedDiskBytesPerSecond", "value": "780000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M24s_v3": {"location": "westus2", "vm_size": "Standard_M24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 491520, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M24s_v3", "tier": "Standard", "size": "M24s_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "480"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "20000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "200000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "200000000"}, {"name": "CachedDiskBytes", "value": "1696512081920"}, {"name": "UncachedDiskIOPS", "value": "32500"}, {"name": "UncachedDiskBytesPerSecond", "value": "780000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M32-16ms": {"location": "westus2", "vm_size": "Standard_M32-16ms", "capability": {"type": "requirement", "name": "westus2_Standard_M32-16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32-16ms", "tier": "Standard", "size": "M32-16ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M32ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32-8ms": {"location": "westus2", "vm_size": "Standard_M32-8ms", "capability": {"type": "requirement", "name": "westus2_Standard_M32-8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32-8ms", "tier": "Standard", "size": "M32-8ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M32ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32dms_v2": {"location": "westus2", "vm_size": "Standard_M32dms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M32dms_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32dms_v2", "tier": "Standard", "size": "M32dms_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3410000000000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "500000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M32ls": {"location": "westus2", "vm_size": "Standard_M32ls", "capability": {"type": "requirement", "name": "westus2_Standard_M32ls", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ls", "tier": "Standard", "size": "M32ls", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32ms": {"location": "westus2", "vm_size": "Standard_M32ms", "capability": {"type": "requirement", "name": "westus2_Standard_M32ms", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ms", "tier": "Standard", "size": "M32ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M32ms_v2": {"location": "westus2", "vm_size": "Standard_M32ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M32ms_v2", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 896000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ms_v2", "tier": "Standard", "size": "M32ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "875"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3410000000000"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "500000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M32ts": {"location": "westus2", "vm_size": "Standard_M32ts", "capability": {"type": "requirement", "name": "westus2_Standard_M32ts", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 196608, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M32ts", "tier": "Standard", "size": "M32ts", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1024000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "192"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "419430400"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "419430400"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "524288000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-104ms_v2": {"location": "westus2", "vm_size": "Standard_M416-104ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-104ms_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 11673600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-104ms_v2", "tier": "Standard", "size": "M416-104ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "11400"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M416ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-104s_v2": {"location": "westus2", "vm_size": "Standard_M416-104s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-104s_v2", "is_default": false, "node_count": 1, "core_count": 104, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-104s_v2", "tier": "Standard", "size": "M416-104s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "104"}, {"name": "ParentSize", "value": "Standard_M416s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-208ms_v2": {"location": "westus2", "vm_size": "Standard_M416-208ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-208ms_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 11673600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-208ms_v2", "tier": "Standard", "size": "M416-208ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "11400"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "208"}, {"name": "ParentSize", "value": "Standard_M416ms_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416-208s_v2": {"location": "westus2", "vm_size": "Standard_M416-208s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416-208s_v2", "is_default": false, "node_count": 1, "core_count": 208, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416-208s_v2", "tier": "Standard", "size": "M416-208s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "208"}, {"name": "ParentSize", "value": "Standard_M416s_v2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416is_v2": {"location": "westus2", "vm_size": "Standard_M416is_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416is_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416is_v2", "tier": "Standard", "size": "M416is_v2", "family": "standardMIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "15118000000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416ms_v2": {"location": "westus2", "vm_size": "Standard_M416ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416ms_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 11673600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416ms_v2", "tier": "Standard", "size": "M416ms_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "11400"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M416s_10_v2": {"location": "westus2", "vm_size": "Standard_M416s_10_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_10_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 9728000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_10_v2", "tier": "Standard", "size": "M416s_10_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "9500"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "15118284881920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416s_8_v2": {"location": "westus2", "vm_size": "Standard_M416s_8_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_8_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 7782400, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_8_v2", "tier": "Standard", "size": "M416s_8_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "7600"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "15118284881920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416s_9_v2": {"location": "westus2", "vm_size": "Standard_M416s_9_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_9_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 8775680, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_9_v2", "tier": "Standard", "size": "M416s_9_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "4194304"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "8570"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "416"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "4000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "4000000000"}, {"name": "CachedDiskBytes", "value": "15118284881920"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "True"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M416s_v2": {"location": "westus2", "vm_size": "Standard_M416s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M416s_v2", "is_default": false, "node_count": 1, "core_count": 416, "memory_mb": 5836800, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M416s_v2", "tier": "Standard", "size": "M416s_v2", "family": "standardMSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8388608"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "416"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "5700"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M48ds_1_v3": {"location": "westus2", "vm_size": "Standard_M48ds_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M48ds_1_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M48ds_1_v3", "tier": "Standard", "size": "M48ds_1_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M48s_1_v3": {"location": "westus2", "vm_size": "Standard_M48s_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M48s_1_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M48s_1_v3", "tier": "Standard", "size": "M48s_1_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "4"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64": {"location": "westus2", "vm_size": "Standard_M64", "capability": {"type": "requirement", "name": "westus2_Standard_M64", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1024000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64", "tier": "Standard", "size": "M64", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1000"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "1318554959872"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64-16ms": {"location": "westus2", "vm_size": "Standard_M64-16ms", "capability": {"type": "requirement", "name": "westus2_Standard_M64-16ms", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64-16ms", "tier": "Standard", "size": "M64-16ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M64ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64-32ms": {"location": "westus2", "vm_size": "Standard_M64-32ms", "capability": {"type": "requirement", "name": "westus2_Standard_M64-32ms", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64-32ms", "tier": "Standard", "size": "M64-32ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M64ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64dms_v2": {"location": "westus2", "vm_size": "Standard_M64dms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64dms_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1835008, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64dms_v2", "tier": "Standard", "size": "M64dms_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2097152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1792"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64ds_v2": {"location": "westus2", "vm_size": "Standard_M64ds_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64ds_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1048576, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ds_v2", "tier": "Standard", "size": "M64ds_v2", "family": "standardMDSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2097152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1024"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64ls": {"location": "westus2", "vm_size": "Standard_M64ls", "capability": {"type": "requirement", "name": "westus2_Standard_M64ls", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ls", "tier": "Standard", "size": "M64ls", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64m": {"location": "westus2", "vm_size": "Standard_M64m", "capability": {"type": "requirement", "name": "westus2_Standard_M64m", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64m", "tier": "Standard", "size": "M64m", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "8192000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64ms": {"location": "westus2", "vm_size": "Standard_M64ms", "capability": {"type": "requirement", "name": "westus2_Standard_M64ms", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1792000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ms", "tier": "Standard", "size": "M64ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2048000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1750"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "838860800"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "838860800"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1048576000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64ms_v2": {"location": "westus2", "vm_size": "Standard_M64ms_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64ms_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1835008, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64ms_v2", "tier": "Standard", "size": "M64ms_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1792"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M64s": {"location": "westus2", "vm_size": "Standard_M64s", "capability": {"type": "requirement", "name": "westus2_Standard_M64s", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1048576, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64s", "tier": "Standard", "size": "M64s", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2097152"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "1024"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6816113098752"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M64s_v2": {"location": "westus2", "vm_size": "Standard_M64s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M64s_v2", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 1048576, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M64s_v2", "tier": "Standard", "size": "M64s_v2", "family": "standardMSMediumMemoryv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "1024"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "80000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "800000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "800000000"}, {"name": "CachedDiskBytes", "value": "6820000000000"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1000000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M8-2ms": {"location": "westus2", "vm_size": "Standard_M8-2ms", "capability": {"type": "requirement", "name": "westus2_Standard_M8-2ms", "is_default": false, "node_count": 1, "core_count": 2, "memory_mb": 224000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M8-2ms", "tier": "Standard", "size": "M8-2ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "256000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218.75"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "1"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "2"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M8ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "851477266432"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M8-4ms": {"location": "westus2", "vm_size": "Standard_M8-4ms", "capability": {"type": "requirement", "name": "westus2_Standard_M8-4ms", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 224000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M8-4ms", "tier": "Standard", "size": "M8-4ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "256000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218.75"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "1"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "ACUs", "value": "160"}, {"name": "ParentSize", "value": "Standard_M8ms"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "851477266432"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M832ixs_v2": {"location": "westus2", "vm_size": "Standard_M832ixs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_M832ixs_v2", "is_default": false, "node_count": 1, "core_count": 832, "memory_mb": 22325002, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M832ixs_v2", "tier": "Standard", "size": "M832ixs_v2", "family": "standardMIv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1920000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "832"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "21801.76"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "16"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "832"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "250000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1677721600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1677721600"}, {"name": "CachedDiskBytes", "value": "13632200000000"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "2097152000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M8ms": {"location": "westus2", "vm_size": "Standard_M8ms", "capability": {"type": "requirement", "name": "westus2_Standard_M8ms", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 224000, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "NESTED_VIRTUALIZATION"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M8ms", "tier": "Standard", "size": "M8ms", "family": "standardMSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "256000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "218.75"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "1"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "ACUs", "value": "160"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "10000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "104857600"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "104857600"}, {"name": "CachedDiskBytes", "value": "851477266432"}, {"name": "UncachedDiskIOPS", "value": "5000"}, {"name": "UncachedDiskBytesPerSecond", "value": "131072000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["2"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_M96ds_1_v3": {"location": "westus2", "vm_size": "Standard_M96ds_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96ds_1_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96ds_1_v3", "tier": "Standard", "size": "M96ds_1_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M96ds_2_v3": {"location": "westus2", "vm_size": "Standard_M96ds_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96ds_2_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96ds_2_v3", "tier": "Standard", "size": "M96ds_2_v3", "family": "standardMDSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "409600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M96s_1_v3": {"location": "westus2", "vm_size": "Standard_M96s_1_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96s_1_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 997376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96s_1_v3", "tier": "Standard", "size": "M96s_1_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "974"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "40000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "400000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "400000000"}, {"name": "CachedDiskBytes", "value": "3408056549376"}, {"name": "UncachedDiskIOPS", "value": "65000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1560000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_M96s_2_v3": {"location": "westus2", "vm_size": "Standard_M96s_2_v3", "capability": {"type": "requirement", "name": "westus2_Standard_M96s_2_v3", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 1992704, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI", "NVMe"]}, "has_resource_disk": false}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_M96s_2_v3", "tier": "Standard", "size": "M96s_2_v3", "family": "standardMSMediumMemoryv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "0"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "DiskControllerTypes", "value": "SCSI,NVMe"}, {"name": "MemoryGB", "value": "1946"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "MaxWriteAcceleratorDisksAllowed", "value": "8"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "160000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1600000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1600000000"}, {"name": "CachedDiskBytes", "value": "13632226197504"}, {"name": "UncachedDiskIOPS", "value": "130000"}, {"name": "UncachedDiskBytesPerSecond", "value": "3120000000"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_MDB16s": {"location": "westus2", "vm_size": "Standard_MDB16s", "capability": {"type": "requirement", "name": "westus2_Standard_MDB16s", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 262144, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_MDB16s", "tier": "Standard", "size": "MDB16s", "family": "standardMDBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "524288"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "256"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "ACUs", "value": "160"}, {"name": "CachedDiskBytes", "value": "3145728000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_MDB32s": {"location": "westus2", "vm_size": "Standard_MDB32s", "capability": {"type": "requirement", "name": "westus2_Standard_MDB32s", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 524288, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_MDB32s", "tier": "Standard", "size": "MDB32s", "family": "standardMDBSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1048576"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "512"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "ACUs", "value": "160"}, {"name": "CachedDiskBytes", "value": "3328180224"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_MSODSG5": {"location": "westus2", "vm_size": "Standard_MSODSG5", "capability": {"type": "requirement", "name": "westus2_Standard_MSODSG5", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_MSODSG5", "tier": "Standard", "size": "MSODSG5", "family": "MSODSFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "1", "3"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3072000"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS,PaaS"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_NC12": {"location": "westus2", "vm_size": "Standard_NC12", "capability": {"type": "requirement", "name": "westus2_Standard_NC12", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12", "tier": "Standard", "size": "NC12", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC12s_v2": {"location": "westus2", "vm_size": "Standard_NC12s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC12s_v2", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12s_v2", "tier": "Standard", "size": "NC12s_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1509376"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "48000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "524288000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "524288000"}, {"name": "CachedDiskBytes", "value": "687194767360"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC12s_v3": {"location": "westus2", "vm_size": "Standard_NC12s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12s_v3", "tier": "Standard", "size": "NC12s_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "688128"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC12_Promo": {"location": "westus2", "vm_size": "Standard_NC12_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC12_Promo", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC12_Promo", "tier": "Standard", "size": "NC12_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "40000"}, {"name": "UncachedDiskBytesPerSecond", "value": "600000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC16as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC16as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC16as_T4_v3", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 112640, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC16as_T4_v3", "tier": "Standard", "size": "NC16as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "110"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154619000000"}, {"name": "UncachedDiskIOPS", "value": "24480"}, {"name": "UncachedDiskBytesPerSecond", "value": "368640000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NC24": {"location": "westus2", "vm_size": "Standard_NC24", "capability": {"type": "requirement", "name": "westus2_Standard_NC24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24", "tier": "Standard", "size": "NC24", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24ads_A100_v4": {"location": "westus2", "vm_size": "Standard_NC24ads_A100_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NC24ads_A100_v4", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24ads_A100_v4", "tier": "Standard", "size": "NC24ads_A100_v4", "family": "StandardNCADSA100v4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "65536"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "75000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1000000000"}, {"name": "CachedDiskBytes", "value": "274877906944"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "NvmeDiskSizeInMiB", "value": "915456"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_NC24r": {"location": "westus2", "vm_size": "Standard_NC24r", "capability": {"type": "requirement", "name": "westus2_Standard_NC24r", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24r", "tier": "Standard", "size": "NC24r", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24rs_v2": {"location": "westus2", "vm_size": "Standard_NC24rs_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC24rs_v2", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24rs_v2", "tier": "Standard", "size": "NC24rs_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24rs_v3": {"location": "westus2", "vm_size": "Standard_NC24rs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC24rs_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24rs_v3", "tier": "Standard", "size": "NC24rs_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24r_Promo": {"location": "westus2", "vm_size": "Standard_NC24r_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC24r_Promo", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24r_Promo", "tier": "Standard", "size": "NC24r_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24s_v2": {"location": "westus2", "vm_size": "Standard_NC24s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC24s_v2", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24s_v2", "tier": "Standard", "size": "NC24s_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24s_v3": {"location": "westus2", "vm_size": "Standard_NC24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24s_v3", "tier": "Standard", "size": "NC24s_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1376256"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC24_Promo": {"location": "westus2", "vm_size": "Standard_NC24_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC24_Promo", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC24_Promo", "tier": "Standard", "size": "NC24_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC48ads_A100_v4": {"location": "westus2", "vm_size": "Standard_NC48ads_A100_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NC48ads_A100_v4", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC48ads_A100_v4", "tier": "Standard", "size": "NC48ads_A100_v4", "family": "StandardNCADSA100v4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "131072"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "225000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "3000000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "3000000000"}, {"name": "CachedDiskBytes", "value": "549755813888"}, {"name": "UncachedDiskIOPS", "value": "76800"}, {"name": "UncachedDiskBytesPerSecond", "value": "1152000000"}, {"name": "NvmeDiskSizeInMiB", "value": "1830912"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_NC4as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC4as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC4as_T4_v3", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC4as_T4_v3", "tier": "Standard", "size": "NC4as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "180224"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154619000000"}, {"name": "UncachedDiskIOPS", "value": "24480"}, {"name": "UncachedDiskBytesPerSecond", "value": "368640000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_NC6": {"location": "westus2", "vm_size": "Standard_NC6", "capability": {"type": "requirement", "name": "westus2_Standard_NC6", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6", "tier": "Standard", "size": "NC6", "family": "standardNCFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "348160"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "300000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC64as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC64as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC64as_T4_v3", "is_default": false, "node_count": 1, "core_count": 64, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC64as_T4_v3", "tier": "Standard", "size": "NC64as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2883584"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "64"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "64"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "48000"}, {"name": "UncachedDiskBytesPerSecond", "value": "737280000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NC6s_v2": {"location": "westus2", "vm_size": "Standard_NC6s_v2", "capability": {"type": "requirement", "name": "westus2_Standard_NC6s_v2", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6s_v2", "tier": "Standard", "size": "NC6s_v2", "family": "standardNCSv2Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "753664"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "210763776"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "210763776"}, {"name": "CachedDiskBytes", "value": "343597383680"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "300000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC6s_v3": {"location": "westus2", "vm_size": "Standard_NC6s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC6s_v3", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6s_v3", "tier": "Standard", "size": "NC6s_v3", "family": "standardNCSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "344064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC6_Promo": {"location": "westus2", "vm_size": "Standard_NC6_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NC6_Promo", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC6_Promo", "tier": "Standard", "size": "NC6_Promo", "family": "standardNCPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "348160"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "UncachedDiskIOPS", "value": "20000"}, {"name": "UncachedDiskBytesPerSecond", "value": "300000000000"}, {"name": "RetirementDateUtc", "value": "09/06/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NC8as_T4_v3": {"location": "westus2", "vm_size": "Standard_NC8as_T4_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NC8as_T4_v3", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC8as_T4_v3", "tier": "Standard", "size": "NC8as_T4_v3", "family": "Standard NCASv3_T4 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "2", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16320"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "251658240"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "251658240"}, {"name": "CachedDiskBytes", "value": "154619000000"}, {"name": "UncachedDiskIOPS", "value": "24480"}, {"name": "UncachedDiskBytesPerSecond", "value": "368640000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NC96ads_A100_v4": {"location": "westus2", "vm_size": "Standard_NC96ads_A100_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NC96ads_A100_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 901120, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NC96ads_A100_v4", "tier": "Standard", "size": "NC96ads_A100_v4", "family": "StandardNCADSA100v4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3", "1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "262144"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "880"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "128000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "1024000000"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "1024000000"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "120000"}, {"name": "UncachedDiskBytesPerSecond", "value": "4096000000"}, {"name": "NvmeDiskSizeInMiB", "value": "3662108"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_ND96asr_v4": {"location": "westus2", "vm_size": "Standard_ND96asr_v4", "capability": {"type": "requirement", "name": "westus2_Standard_ND96asr_v4", "is_default": false, "node_count": 1, "core_count": 96, "memory_mb": 921600, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 8, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Infiniband"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_ND96asr_v4", "tier": "Standard", "size": "ND96asr_v4", "family": "Standard NDASv4_A100 Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2969600"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "96"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V2"}, {"name": "MemoryGB", "value": "900"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "96"}, {"name": "GPUs", "value": "8"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "TrustedLaunchDisabled", "value": "True"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "True"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NP48": {"location": "westus2", "vm_size": "Standard_NP48", "capability": {"type": "requirement", "name": "westus2_Standard_NP48", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 675, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NP48", "tier": "Standard", "size": "NP48", "family": "StandardNPFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "0.66"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": []}}, "Standard_NV12": {"location": "westus2", "vm_size": "Standard_NV12", "capability": {"type": "requirement", "name": "westus2_Standard_NV12", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12", "tier": "Standard", "size": "NV12", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "08/31/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV12ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV12ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV12ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 112640, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12ads_A10_v5", "tier": "Standard", "size": "NV12ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "368640"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "110"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "214748000000"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "201326592"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": []}}, "Standard_NV12hs_v3": {"location": "westus2", "vm_size": "Standard_NV12hs_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV12hs_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12hs_v3", "tier": "Standard", "size": "NV12hs_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "344064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "24480"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "214958080"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "214958080"}, {"name": "CachedDiskBytes", "value": "343597383680"}, {"name": "UncachedDiskIOPS", "value": "20400"}, {"name": "UncachedDiskBytesPerSecond", "value": "307200000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV12s_v3": {"location": "westus2", "vm_size": "Standard_NV12s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV12s_v3", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12s_v3", "tier": "Standard", "size": "NV12s_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "344064"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV12_Promo": {"location": "westus2", "vm_size": "Standard_NV12_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NV12_Promo", "is_default": false, "node_count": 1, "core_count": 12, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 48, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 48, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV12_Promo", "tier": "Standard", "size": "NV12_Promo", "family": "standardNVPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "696320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "12"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "48"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "12"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "9/6/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV16ahs_v4": {"location": "westus2", "vm_size": "Standard_NV16ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV16ahs_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV16ahs_v4", "tier": "Standard", "size": "NV16ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV16as_v4": {"location": "westus2", "vm_size": "Standard_NV16as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV16as_v4", "is_default": false, "node_count": 1, "core_count": 16, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV16as_v4", "tier": "Standard", "size": "NV16as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "360448"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "16"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "16"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "32000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "268435456"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "268435456"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "25600"}, {"name": "UncachedDiskBytesPerSecond", "value": "384000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV18ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV18ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV18ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 18, "memory_mb": 225280, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 6, "max_inclusive": true}, "max_nic_count": 6}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV18ads_A10_v5", "tier": "Standard", "size": "NV18ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "737280"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "18"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "220"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "18"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "309237645312"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "6"}], "restrictions": []}}, "Standard_NV24": {"location": "westus2", "vm_size": "Standard_NV24", "capability": {"type": "requirement", "name": "westus2_Standard_NV24", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24", "tier": "Standard", "size": "NV24", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "08/31/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV24ms_v3": {"location": "westus2", "vm_size": "Standard_NV24ms_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV24ms_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24ms_v3", "tier": "Standard", "size": "NV24ms_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2172928"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV24s_v3": {"location": "westus2", "vm_size": "Standard_NV24s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV24s_v3", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24s_v3", "tier": "Standard", "size": "NV24s_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "688128"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV24_Promo": {"location": "westus2", "vm_size": "Standard_NV24_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NV24_Promo", "is_default": false, "node_count": 1, "core_count": 24, "memory_mb": 229376, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 64, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 64, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV24_Promo", "tier": "Standard", "size": "NV24_Promo", "family": "standardNVPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "24"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "224"}, {"name": "MaxDataDiskCount", "value": "64"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "24"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "9/6/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV32ahs_v4": {"location": "westus2", "vm_size": "Standard_NV32ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV32ahs_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV32ahs_v4", "tier": "Standard", "size": "NV32ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "720896"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "326417514496"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV32as_v4": {"location": "westus2", "vm_size": "Standard_NV32as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV32as_v4", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 114688, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV32as_v4", "tier": "Standard", "size": "NV32as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "720896"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "112"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "64000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "536870912"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "536870912"}, {"name": "CachedDiskBytes", "value": "326417514496"}, {"name": "UncachedDiskIOPS", "value": "51200"}, {"name": "UncachedDiskBytesPerSecond", "value": "768000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV32ms_v3": {"location": "westus2", "vm_size": "Standard_NV32ms_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV32ms_v3", "is_default": false, "node_count": 1, "core_count": 32, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV32ms_v3", "tier": "Standard", "size": "NV32ms_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "32"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "32"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV36adms_A10_v5": {"location": "westus2", "vm_size": "Standard_NV36adms_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV36adms_A10_v5", "is_default": false, "node_count": 1, "core_count": 36, "memory_mb": 901120, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV36adms_A10_v5", "tier": "Standard", "size": "NV36adms_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2949120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "36"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "880"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "36"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NV36ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV36ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV36ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 36, "memory_mb": 450560, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV36ads_A10_v5", "tier": "Standard", "size": "NV36ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "1474560"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "36"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "440"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "36"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "618475290624"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NV48s_v3": {"location": "westus2", "vm_size": "Standard_NV48s_v3", "capability": {"type": "requirement", "name": "westus2_Standard_NV48s_v3", "is_default": false, "node_count": 1, "core_count": 48, "memory_mb": 458752, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 4, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV48s_v3", "tier": "Standard", "size": "NV48s_v3", "family": "standardNVSv3Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "3018752"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "48"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "448"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "48"}, {"name": "GPUs", "value": "4"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CachedDiskBytes", "value": "1374389534720"}, {"name": "UncachedDiskIOPS", "value": "80000"}, {"name": "UncachedDiskBytesPerSecond", "value": "1200000000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV4ahs_v4": {"location": "westus2", "vm_size": "Standard_NV4ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV4ahs_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV4ahs_v4", "tier": "Standard", "size": "NV4ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "90112"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV4as_v4": {"location": "westus2", "vm_size": "Standard_NV4as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV4as_v4", "is_default": false, "node_count": 1, "core_count": 4, "memory_mb": 14336, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 8, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 8, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV4as_v4", "tier": "Standard", "size": "NV4as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "90112"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "4"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "14"}, {"name": "MaxDataDiskCount", "value": "8"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "4"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "67108864"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "67108864"}, {"name": "CachedDiskBytes", "value": "34359738368"}, {"name": "UncachedDiskIOPS", "value": "6400"}, {"name": "UncachedDiskBytesPerSecond", "value": "96000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV6": {"location": "westus2", "vm_size": "Standard_NV6", "capability": {"type": "requirement", "name": "westus2_Standard_NV6", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6", "tier": "Standard", "size": "NV6", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "08/31/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV6ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV6ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV6ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 56320, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 4, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 4, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6ads_A10_v5", "tier": "Standard", "size": "NV6ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "184320"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "55"}, {"name": "MaxDataDiskCount", "value": "4"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "8000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "125829120"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "125829120"}, {"name": "CachedDiskBytes", "value": "154618822656"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "184320000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": []}}, "Standard_NV6h": {"location": "westus2", "vm_size": "Standard_NV6h", "capability": {"type": "requirement", "name": "westus2_Standard_NV6h", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 12, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 12, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 1, "max_inclusive": true}, "max_nic_count": 1}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6h", "tier": "Standard", "size": "NV6h", "family": "standardNVFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "12"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV6_Promo": {"location": "westus2", "vm_size": "Standard_NV6_Promo", "capability": {"type": "requirement", "name": "westus2_Standard_NV6_Promo", "is_default": false, "node_count": 1, "core_count": 6, "memory_mb": 57344, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 24, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 24, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Synthetic"]}, "nic_count": {"min": 1, "max": 2, "max_inclusive": true}, "max_nic_count": 2}, "gpu_count": 1, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV6_Promo", "tier": "Standard", "size": "NV6_Promo", "family": "standardNVPromoFamily", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["3", "1", "2"], "zone_details": []}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "389120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "6"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1"}, {"name": "MemoryGB", "value": "56"}, {"name": "MaxDataDiskCount", "value": "24"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "False"}, {"name": "PremiumIO", "value": "False"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "6"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "1"}, {"name": "RetirementDateUtc", "value": "9/6/2023"}, {"name": "EphemeralOSDiskSupported", "value": "False"}, {"name": "EncryptionAtHostSupported", "value": "False"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "False"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "2"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV72ads_A10_v5": {"location": "westus2", "vm_size": "Standard_NV72ads_A10_v5", "capability": {"type": "requirement", "name": "westus2_Standard_NV72ads_A10_v5", "is_default": false, "node_count": 1, "core_count": 72, "memory_mb": 901120, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 32, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 32, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 8, "max_inclusive": true}, "max_nic_count": 8}, "gpu_count": 2, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "Gpu", "is_enabled": false}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV72ads_A10_v5", "tier": "Standard", "size": "NV72ads_A10_v5", "family": "StandardNVADSA10v5Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "2949120"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "72"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "880"}, {"name": "MaxDataDiskCount", "value": "32"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "72"}, {"name": "GPUs", "value": "2"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "96000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "805306368"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "805306368"}, {"name": "CachedDiskBytes", "value": "1099511627776"}, {"name": "UncachedDiskIOPS", "value": "12000"}, {"name": "UncachedDiskBytesPerSecond", "value": "180000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "8"}], "restrictions": []}}, "Standard_NV8ahs_v4": {"location": "westus2", "vm_size": "Standard_NV8ahs_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV8ahs_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV8ahs_v4", "tier": "Standard", "size": "NV8ahs_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "180224"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}, "Standard_NV8as_v4": {"location": "westus2", "vm_size": "Standard_NV8as_v4", "capability": {"type": "requirement", "name": "westus2_Standard_NV8as_v4", "is_default": false, "node_count": 1, "core_count": 8, "memory_mb": 28672, "disk": {"type": "Disk", "disk_type": {"is_allow_set": true, "items": ["PremiumSSDLRS", "Ephemeral", "StandardHDDLRS", "StandardSSDLRS"]}, "data_disk_count": {"min": 0, "max": 16, "max_inclusive": true}, "data_disk_caching_type": "None", "data_disk_iops": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "data_disk_size": {"min": 0, "max": 9223372036854775807, "max_inclusive": true}, "max_data_disk_count": 16, "disk_controller_type": {"is_allow_set": true, "items": ["SCSI"]}, "has_resource_disk": true}, "network_interface": {"type": "NetworkInterface", "data_path": {"is_allow_set": true, "items": ["Sriov", "Synthetic"]}, "nic_count": {"min": 1, "max": 4, "max_inclusive": true}, "max_nic_count": 4}, "gpu_count": 0, "features": {"is_allow_set": true, "items": [{"type": "AzureExtension"}, {"type": "SerialConsole"}, {"type": "Resize"}, {"type": "StartStop"}, {"type": "IaaS"}, {"type": "Security_Profile", "security_profile": {"is_allow_set": true, "items": ["none", "secureboot"]}, "encrypt_disk": false, "disk_encryption_set_id": ""}, {"type": "VhdGeneration", "gen": {"is_allow_set": false, "items": [1, 2]}}, {"type": "Architecture", "arch": "x64"}, {"type": "Nfs"}]}, "excluded_features": null}, "resource_sku": {"resource_type": "virtualMachines", "name": "Standard_NV8as_v4", "tier": "Standard", "size": "NV8as_v4", "family": "standardNVSv4Family", "locations": ["westus2"], "location_info": [{"location": "westus2", "zones": ["1", "2", "3"], "zone_details": [{"capabilities": [{"name": "UltraSSDAvailable", "value": "True"}]}]}], "capabilities": [{"name": "MaxResourceVolumeMB", "value": "180224"}, {"name": "OSVhdSizeMB", "value": "1047552"}, {"name": "vCPUs", "value": "8"}, {"name": "MemoryPreservingMaintenanceSupported", "value": "False"}, {"name": "HyperVGenerations", "value": "V1,V2"}, {"name": "MemoryGB", "value": "28"}, {"name": "MaxDataDiskCount", "value": "16"}, {"name": "CpuArchitectureType", "value": "x64"}, {"name": "LowPriorityCapable", "value": "True"}, {"name": "PremiumIO", "value": "True"}, {"name": "VMDeploymentTypes", "value": "IaaS"}, {"name": "vCPUsAvailable", "value": "8"}, {"name": "GPUs", "value": "1"}, {"name": "vCPUsPerCore", "value": "2"}, {"name": "CombinedTempDiskAndCachedIOPS", "value": "16000"}, {"name": "CombinedTempDiskAndCachedReadBytesPerSecond", "value": "134217728"}, {"name": "CombinedTempDiskAndCachedWriteBytesPerSecond", "value": "134217728"}, {"name": "CachedDiskBytes", "value": "68719476736"}, {"name": "UncachedDiskIOPS", "value": "12800"}, {"name": "UncachedDiskBytesPerSecond", "value": "192000000"}, {"name": "EphemeralOSDiskSupported", "value": "True"}, {"name": "EncryptionAtHostSupported", "value": "True"}, {"name": "CapacityReservationSupported", "value": "False"}, {"name": "AcceleratedNetworkingEnabled", "value": "True"}, {"name": "RdmaEnabled", "value": "False"}, {"name": "MaxNetworkInterfaces", "value": "4"}], "restrictions": [{"type": "Zone", "values": ["westus2"], "restriction_info": {"locations": ["westus2"], "zones": ["1", "2", "3"]}, "reason_code": "NotAvailableForSubscription"}]}}}} \ No newline at end of file diff --git a/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py b/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py index 65c512b22f..2a9acff659 100644 --- a/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py +++ b/tests/common/protocol/test_extensions_goal_state_from_extensions_config.py @@ -68,14 +68,14 @@ def test_it_should_parse_is_version_from_rsm_properly(self): self.assertIsNone(family.is_version_from_rsm, "is_version_from_rsm should be None") data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version.xml" + data_file["ext_conf"] = "hostgaplugin/ext_conf-agent_family_version.xml" with mock_wire_protocol(data_file) as protocol: agent_families = protocol.get_goal_state().extensions_goal_state.agent_families for family in agent_families: self.assertTrue(family.is_version_from_rsm, "is_version_from_rsm should be True") data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version_properties_false.xml" + data_file["ext_conf"] = "hostgaplugin/ext_conf-rsm_version_properties_false.xml" with mock_wire_protocol(data_file) as protocol: agent_families = protocol.get_goal_state().extensions_goal_state.agent_families for family in agent_families: @@ -88,14 +88,14 @@ def test_it_should_parse_is_vm_enabled_for_rsm_upgrades(self): self.assertIsNone(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be None") data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version.xml" + data_file["ext_conf"] = "hostgaplugin/ext_conf-agent_family_version.xml" with mock_wire_protocol(data_file) as protocol: agent_families = protocol.get_goal_state().extensions_goal_state.agent_families for family in agent_families: self.assertTrue(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be True") data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "hostgaplugin/ext_conf-requested_version_properties_false.xml" + data_file["ext_conf"] = "hostgaplugin/ext_conf-rsm_version_properties_false.xml" with mock_wire_protocol(data_file) as protocol: agent_families = protocol.get_goal_state().extensions_goal_state.agent_families for family in agent_families: diff --git a/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py b/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py index a067c64110..771fa22068 100644 --- a/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py +++ b/tests/common/protocol/test_extensions_goal_state_from_vm_settings.py @@ -53,16 +53,16 @@ def test_it_should_parse_requested_version_properly(self): goal_state = GoalState(protocol.client) families = goal_state.extensions_goal_state.agent_families for family in families: - self.assertIsNone(family.requested_version, "Version should be None") + self.assertIsNone(family.version, "Version should be None") data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() - data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version.json" + data_file["vm_settings"] = "hostgaplugin/vm_settings-agent_family_version.json" with mock_wire_protocol(data_file) as protocol: protocol.mock_wire_data.set_etag(888) goal_state = GoalState(protocol.client) families = goal_state.extensions_goal_state.agent_families for family in families: - self.assertEqual(family.requested_version, "9.9.9.9", "Version should be 9.9.9.9") + self.assertEqual(family.version, "9.9.9.9", "Version should be 9.9.9.9") def test_it_should_parse_is_version_from_rsm_properly(self): with mock_wire_protocol(wire_protocol_data.DATA_FILE_VM_SETTINGS) as protocol: @@ -72,7 +72,7 @@ def test_it_should_parse_is_version_from_rsm_properly(self): self.assertIsNone(family.is_version_from_rsm, "is_version_from_rsm should be None") data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() - data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version.json" + data_file["vm_settings"] = "hostgaplugin/vm_settings-agent_family_version.json" with mock_wire_protocol(data_file) as protocol: protocol.mock_wire_data.set_etag(888) goal_state = GoalState(protocol.client) @@ -97,7 +97,7 @@ def test_it_should_parse_is_vm_enabled_for_rsm_upgrades_properly(self): self.assertIsNone(family.is_vm_enabled_for_rsm_upgrades, "is_vm_enabled_for_rsm_upgrades should be None") data_file = wire_protocol_data.DATA_FILE_VM_SETTINGS.copy() - data_file["vm_settings"] = "hostgaplugin/vm_settings-requested_version.json" + data_file["vm_settings"] = "hostgaplugin/vm_settings-agent_family_version.json" with mock_wire_protocol(data_file) as protocol: protocol.mock_wire_data.set_etag(888) goal_state = GoalState(protocol.client) diff --git a/tests/data/hostgaplugin/ext_conf-requested_version.xml b/tests/data/hostgaplugin/ext_conf-agent_family_version.xml similarity index 100% rename from tests/data/hostgaplugin/ext_conf-requested_version.xml rename to tests/data/hostgaplugin/ext_conf-agent_family_version.xml diff --git a/tests/data/hostgaplugin/ext_conf-requested_version_properties_false.xml b/tests/data/hostgaplugin/ext_conf-rsm_version_properties_false.xml similarity index 100% rename from tests/data/hostgaplugin/ext_conf-requested_version_properties_false.xml rename to tests/data/hostgaplugin/ext_conf-rsm_version_properties_false.xml diff --git a/tests/data/hostgaplugin/vm_settings-requested_version.json b/tests/data/hostgaplugin/vm_settings-agent_family_version.json similarity index 100% rename from tests/data/hostgaplugin/vm_settings-requested_version.json rename to tests/data/hostgaplugin/vm_settings-agent_family_version.json diff --git a/tests/data/wire/ext_conf_requested_version.xml b/tests/data/wire/ext_conf_rsm_version.xml similarity index 100% rename from tests/data/wire/ext_conf_requested_version.xml rename to tests/data/wire/ext_conf_rsm_version.xml diff --git a/tests/data/wire/ext_conf_requested_version_missing_in_agent_family.xml b/tests/data/wire/ext_conf_version_missing_in_agent_family.xml similarity index 100% rename from tests/data/wire/ext_conf_requested_version_missing_in_agent_family.xml rename to tests/data/wire/ext_conf_version_missing_in_agent_family.xml diff --git a/tests/data/wire/ext_conf_requested_version_missing_in_manifest.xml b/tests/data/wire/ext_conf_version_missing_in_manifest.xml similarity index 100% rename from tests/data/wire/ext_conf_requested_version_missing_in_manifest.xml rename to tests/data/wire/ext_conf_version_missing_in_manifest.xml diff --git a/tests/data/wire/ext_conf_requested_version_not_from_rsm.xml b/tests/data/wire/ext_conf_version_not_from_rsm.xml similarity index 100% rename from tests/data/wire/ext_conf_requested_version_not_from_rsm.xml rename to tests/data/wire/ext_conf_version_not_from_rsm.xml diff --git a/tests/ga/test_agent_update_handler.py b/tests/ga/test_agent_update_handler.py index 98af150042..91d40c2a43 100644 --- a/tests/ga/test_agent_update_handler.py +++ b/tests/ga/test_agent_update_handler.py @@ -73,9 +73,9 @@ def _assert_agent_directories_exist_and_others_dont_exist(self, versions): self.assertFalse(any(other_agents), "All other agents should be purged from agent dir: {0}".format(other_agents)) - def _assert_agent_requested_version_in_goal_state(self, mock_telemetry, inc=1, version="9.9.9.10"): + def _assert_agent_rsm_version_in_goal_state(self, mock_telemetry, inc=1, version="9.9.9.10"): upgrade_event_msgs = [kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if - 'Goal state incarnation_{0} is requesting a new agent version {1}'.format(inc, version) in kwarg['message'] and kwarg[ + 'New agent version:{0} requested by RSM in Goal state incarnation_{1}'.format(version, inc) in kwarg['message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade] self.assertEqual(1, len(upgrade_event_msgs), "Did not find the event indicating that the agent requested version found. Got: {0}".format( @@ -107,13 +107,13 @@ def test_it_should_not_update_when_autoupdate_disabled(self): self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) self.assertEqual(0, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "requesting a new agent version" in kwarg['message'] and kwarg[ - 'op'] == WALAEventOperation.AgentUpgrade]), "should not check for requested version") + 'op'] == WALAEventOperation.AgentUpgrade]), "should not check for rsm version") def test_it_should_update_to_largest_version_if_ga_versioning_disabled(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with patch.object(conf, "get_enable_ga_versioning", return_value=False): with self.assertRaises(AgentUpgradeExitException) as context: @@ -143,8 +143,8 @@ def test_it_should_update_to_largest_version_if_time_window_elapsed(self): data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_uris.xml" - with patch("azurelinuxagent.common.conf.get_hotfix_upgrade_frequency", return_value=0.001): - with patch("azurelinuxagent.common.conf.get_regular_upgrade_frequency", return_value=0.001): + with patch("azurelinuxagent.common.conf.get_self_update_hotfix_frequency", return_value=0.001): + with patch("azurelinuxagent.common.conf.get_self_update_regular_frequency", return_value=0.001): with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -169,22 +169,22 @@ def test_it_should_not_allow_update_if_largest_version_below_current_version(sel def test_it_should_not_agent_update_if_last_attempted_update_time_not_elapsed(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" version = "5.2.0.1" with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10) as (agent_update_handler, mock_telemetry): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(version) + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) # Now we shouldn't check for download if update not allowed.This run should not add new logs agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) - def test_it_should_update_to_largest_version_if_requested_version_not_available(self): + def test_it_should_update_to_largest_version_if_rsm_version_not_available(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() @@ -223,29 +223,29 @@ def test_it_should_download_manifest_if_last_attempted_download_time_is_elapsed( mock_wire_data = agent_update_handler._protocol.mock_wire_data self.assertEqual(3, mock_wire_data.call_counts['manifest_of_ga.xml'], "Agent manifest should be downloaded in all attempts") - def test_it_should_not_agent_update_if_requested_version_is_same_as_current_version(self): + def test_it_should_not_agent_update_if_rsm_version_is_same_as_current_version(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() self.assertEqual(20, self.agent_count(), "Agent directories not set properly") with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version( + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family( str(CURRENT_VERSION)) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertEqual(0, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "requesting a new agent version" in kwarg['message'] and kwarg[ - 'op'] == WALAEventOperation.AgentUpgrade]), "requested version should be same as current version") + 'op'] == WALAEventOperation.AgentUpgrade]), "rsm version should be same as current version") self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") - def test_it_should_upgrade_agent_if_requested_version_is_available_greater_than_current_version(self): + def test_it_should_upgrade_agent_if_rsm_version_is_available_greater_than_current_version(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() @@ -254,13 +254,13 @@ def test_it_should_upgrade_agent_if_requested_version_is_available_greater_than_ with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self._assert_agent_requested_version_in_goal_state(mock_telemetry, version="9.9.9.10") + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, version="9.9.9.10") self._assert_agent_directories_exist_and_others_dont_exist(versions=["9.9.9.10", str(CURRENT_VERSION)]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) - def test_it_should_downgrade_agent_if_requested_version_is_available_less_than_current_version(self): + def test_it_should_downgrade_agent_if_rsm_version_is_available_less_than_current_version(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() @@ -269,19 +269,19 @@ def test_it_should_downgrade_agent_if_requested_version_is_available_less_than_c downgraded_version = "2.5.0" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() with self.assertRaises(AgentUpgradeExitException) as context: agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=downgraded_version) + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=downgraded_version) self._assert_agent_directories_exist_and_others_dont_exist( versions=[downgraded_version, str(CURRENT_VERSION)]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) def test_it_should_not_downgrade_below_daemon_version(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() @@ -290,7 +290,7 @@ def test_it_should_not_downgrade_below_daemon_version(self): downgraded_version = "1.2.0" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -309,14 +309,14 @@ def test_it_should_update_to_largest_version_if_vm_not_enabled_for_rsm_upgrades( self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) - def test_it_should_not_downgrade_to_requested_version_if_version_not_from_rsm(self): + def test_it_should_not_update_to_version_if_version_not_from_rsm(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version_not_from_rsm.xml" + data_file["ext_conf"] = "wire/ext_conf_version_not_from_rsm.xml" downgraded_version = "2.5.0" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -325,9 +325,9 @@ def test_it_should_not_downgrade_to_requested_version_if_version_not_from_rsm(se self.assertFalse(os.path.exists(self.agent_dir(downgraded_version)), "New agent directory should not be found") - def test_handles_if_requested_version_not_found_in_pkgs_to_download(self): + def test_handles_if_rsm_version_not_found_in_pkgs_to_download(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() @@ -336,12 +336,12 @@ def test_handles_if_requested_version_not_found_in_pkgs_to_download(self): version = "5.2.0.4" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version(version) + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self._assert_agent_requested_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) self.assertFalse(os.path.exists(self.agent_dir(version)), "New agent directory should not be found") @@ -368,10 +368,10 @@ def test_handles_missing_agent_family(self): def test_it_should_report_update_status_with_success(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): - agent_update_handler._protocol.mock_wire_data.set_extension_config_requested_version( + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family( str(CURRENT_VERSION)) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() @@ -383,7 +383,7 @@ def test_it_should_report_update_status_with_success(self): def test_it_should_report_update_status_with_error_on_download_fail(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self._get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -393,16 +393,16 @@ def test_it_should_report_update_status_with_error_on_download_fail(self): self.assertEqual("9.9.9.10", vm_agent_update_status.expected_version) self.assertIn("Downloaded agent version is in bad state", vm_agent_update_status.message) - def test_it_should_report_update_status_with_missing_requested_version_error(self): + def test_it_should_report_update_status_with_missing_rsm_version_error(self): data_file = DATA_FILE.copy() - data_file['ext_conf'] = "wire/ext_conf_requested_version_missing_in_agent_family.xml" + data_file['ext_conf'] = "wire/ext_conf_version_missing_in_agent_family.xml" with self._get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Error, vm_agent_update_status.status) self.assertEqual(1, vm_agent_update_status.code) - self.assertIn("VM Enabled for RSM upgrades but requested version is missing in Goal state", vm_agent_update_status.message) + self.assertIn("VM Enabled for RSM upgrades but version is missing in Goal state", vm_agent_update_status.message) def test_it_should_not_log_same_error_next_hours(self): data_file = DATA_FILE.copy() @@ -432,7 +432,7 @@ def test_it_should_not_log_same_error_next_hours(self): def test_it_should_save_rsm_state_of_the_most_recent_goal_state(self): data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): with self.assertRaises(AgentUpgradeExitException): diff --git a/tests/ga/test_update.py b/tests/ga/test_update.py index 52638b2779..8ef6f41464 100644 --- a/tests/ga/test_update.py +++ b/tests/ga/test_update.py @@ -1280,19 +1280,19 @@ def update_goal_state_and_run_handler(autoupdate_enabled=True): protocol.set_http_handlers(http_get_handler=get_handler, http_put_handler=put_handler) - # Case 1: Requested version missing in GS when vm opt-in for rsm upgrades; report missing requested version error - protocol.mock_wire_data.set_extension_config("wire/ext_conf_requested_version_missing_in_agent_family.xml") + # Case 1: rsm version missing in GS when vm opt-in for rsm upgrades; report missing rsm version error + protocol.mock_wire_data.set_extension_config("wire/ext_conf_version_missing_in_agent_family.xml") update_goal_state_and_run_handler() self.assertTrue("updateStatus" in protocol.aggregate_status['aggregateStatus']['guestAgentStatus'], "updateStatus should be reported") update_status = protocol.aggregate_status['aggregateStatus']['guestAgentStatus']["updateStatus"] self.assertEqual(VMAgentUpdateStatuses.Error, update_status['status'], "Status should be an error") self.assertEqual(update_status['code'], 1, "incorrect code reported") - self.assertIn("VM Enabled for RSM upgrades but requested version is missing in Goal state", update_status['formattedMessage']['message'], "incorrect message reported") + self.assertIn("VM Enabled for RSM upgrades but version is missing in Goal state", update_status['formattedMessage']['message'], "incorrect message reported") - # Case 2: Requested version in GS == Current Version; updateStatus should be Success - protocol.mock_wire_data.set_extension_config("wire/ext_conf_requested_version.xml") - protocol.mock_wire_data.set_extension_config_requested_version(str(CURRENT_VERSION)) + # Case 2: rsm version in GS == Current Version; updateStatus should be Success + protocol.mock_wire_data.set_extension_config("wire/ext_conf_rsm_version.xml") + protocol.mock_wire_data.set_version_in_agent_family(str(CURRENT_VERSION)) update_goal_state_and_run_handler() self.assertTrue("updateStatus" in protocol.aggregate_status['aggregateStatus']['guestAgentStatus'], "updateStatus should be reported if asked in GS") @@ -1301,9 +1301,9 @@ def update_goal_state_and_run_handler(autoupdate_enabled=True): self.assertEqual(update_status['expectedVersion'], str(CURRENT_VERSION), "incorrect version reported") self.assertEqual(update_status['code'], 0, "incorrect code reported") - # Case 3: Requested version in GS != Current Version; update fail and report error - protocol.mock_wire_data.set_extension_config("wire/ext_conf_requested_version.xml") - protocol.mock_wire_data.set_extension_config_requested_version("5.2.0.1") + # Case 3: rsm version in GS != Current Version; update fail and report error + protocol.mock_wire_data.set_extension_config("wire/ext_conf_rsm_version.xml") + protocol.mock_wire_data.set_version_in_agent_family("5.2.0.1") update_goal_state_and_run_handler() self.assertTrue("updateStatus" in protocol.aggregate_status['aggregateStatus']['guestAgentStatus'], "updateStatus should be in status blob. Warns: {0}".format(patch_warn.call_args_list)) @@ -1434,8 +1434,8 @@ def create_conf_mocks(self, autoupdate_frequency, hotfix_frequency, normal_frequ # Disabling extension processing to speed up tests as this class deals with testing agent upgrades with patch("azurelinuxagent.common.conf.get_extensions_enabled", return_value=False): with patch("azurelinuxagent.common.conf.get_autoupdate_frequency", return_value=autoupdate_frequency): - with patch("azurelinuxagent.common.conf.get_hotfix_upgrade_frequency", return_value=hotfix_frequency): - with patch("azurelinuxagent.common.conf.get_regular_upgrade_frequency", return_value=normal_frequency): + with patch("azurelinuxagent.common.conf.get_self_update_hotfix_frequency", return_value=hotfix_frequency): + with patch("azurelinuxagent.common.conf.get_self_update_regular_frequency", return_value=normal_frequency): with patch("azurelinuxagent.common.conf.get_autoupdate_gafamily", return_value="Prod"): with patch("azurelinuxagent.common.conf.get_enable_ga_versioning", return_value=True): yield @@ -1505,7 +1505,7 @@ def __assert_ga_version_in_status(self, aggregate_status, version=str(CURRENT_VE def test_it_should_upgrade_agent_on_process_start_if_auto_upgrade_enabled(self): data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self.__get_update_handler(test_data=data_file, iterations=10) as (update_handler, mock_telemetry): update_handler.run(debug=True) @@ -1517,7 +1517,7 @@ def test_it_should_upgrade_agent_on_process_start_if_auto_upgrade_enabled(self): def test_it_should_not_update_agent_if_last_update_time_not_permitted(self): no_of_iterations = 10 data_file = DATA_FILE.copy() - data_file['ext_conf'] = "wire/ext_conf_requested_version.xml" + data_file['ext_conf'] = "wire/ext_conf_rsm_version.xml" self.prepare_agents(1) test_frequency = 10 @@ -1542,9 +1542,9 @@ def test_it_should_not_auto_upgrade_if_auto_update_disabled(self): self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") - def test_it_should_download_only_requested_version_if_available(self): + def test_it_should_download_only_rsm_version_if_available(self): data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self.__get_update_handler(test_data=data_file) as (update_handler, mock_telemetry): update_handler.run(debug=True) @@ -1554,7 +1554,7 @@ def test_it_should_download_only_requested_version_if_available(self): def test_it_should_download_largest_version_if_ga_versioning_disabled(self): data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self.__get_update_handler(test_data=data_file) as (update_handler, mock_telemetry): with patch.object(conf, "get_enable_ga_versioning", return_value=False): update_handler.run(debug=True) @@ -1563,9 +1563,9 @@ def test_it_should_download_largest_version_if_ga_versioning_disabled(self): self.__assert_upgrade_telemetry_emitted(mock_telemetry, version="99999.0.0.0") self.__assert_agent_directories_exist_and_others_dont_exist(versions=["99999.0.0.0"]) - def test_it_should_cleanup_all_agents_except_requested_version_and_current_version(self): + def test_it_should_cleanup_all_agents_except_rsm_version_and_current_version(self): data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() @@ -1578,10 +1578,10 @@ def test_it_should_cleanup_all_agents_except_requested_version_and_current_versi self.__assert_upgrade_telemetry_emitted(mock_telemetry, version="9.9.9.10") self.__assert_agent_directories_exist_and_others_dont_exist(versions=["9.9.9.10", str(CURRENT_VERSION)]) - def test_it_should_not_update_if_requested_version_not_found_in_manifest(self): + def test_it_should_not_update_if_rsm_version_not_found_in_manifest(self): self.prepare_agents(1) data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version_missing_in_manifest.xml" + data_file["ext_conf"] = "wire/ext_conf_version_missing_in_manifest.xml" with self.__get_update_handler(test_data=data_file) as (update_handler, mock_telemetry): update_handler.run(debug=True) @@ -1590,10 +1590,10 @@ def test_it_should_not_update_if_requested_version_not_found_in_manifest(self): agent_msgs = [kwarg for _, kwarg in mock_telemetry.call_args_list if kwarg['op'] in (WALAEventOperation.AgentUpgrade, WALAEventOperation.Download)] # This will throw if corresponding message not found so not asserting on that - requested_version_found = next(kwarg for kwarg in agent_msgs if - "Goal state incarnation_1 is requesting a new agent version 5.2.1.0, will update the agent before processing the goal state" in kwarg['message']) - self.assertTrue(requested_version_found['is_success'], - "The requested version found op should be reported as a success") + rsm_version_found = next(kwarg for kwarg in agent_msgs if + "New agent version:5.2.1.0 requested by RSM in Goal state incarnation_1, will update the agent before processing the goal state" in kwarg['message']) + self.assertTrue(rsm_version_found['is_success'], + "The rsm version found op should be reported as a success") skipping_update = next(kwarg for kwarg in agent_msgs if "No matching package found in the agent manifest for version: 5.2.1.0 in goal state incarnation: incarnation_1, skipping agent update" in kwarg['message']) @@ -1601,7 +1601,7 @@ def test_it_should_not_update_if_requested_version_not_found_in_manifest(self): "The not found message should be reported from current agent version") self.assertFalse(skipping_update['is_success'], "The not found op should be reported as a failure") - def test_it_should_try_downloading_requested_version_on_new_incarnation(self): + def test_it_should_try_downloading_rsm_version_on_new_incarnation(self): no_of_iterations = 1000 # Set the test environment by adding 20 random agents to the agent directory @@ -1618,8 +1618,8 @@ def reload_conf(url, protocol): # Ensure we didn't try to download any agents except during the incarnation change self.__assert_agent_directories_available(versions=[str(CURRENT_VERSION)]) - # Update the requested version to "99999.0.0.0" - update_handler._protocol.mock_wire_data.set_extension_config_requested_version("99999.0.0.0") + # Update the rsm version to "99999.0.0.0" + update_handler._protocol.mock_wire_data.set_version_in_agent_family("99999.0.0.0") reload_conf.call_count += 1 self._add_write_permission_to_goal_state_files() reload_conf.incarnation += 1 @@ -1629,9 +1629,9 @@ def reload_conf(url, protocol): reload_conf.incarnation = 2 data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self.__get_update_handler(iterations=no_of_iterations, test_data=data_file, reload_conf=reload_conf) as (update_handler, mock_telemetry): - update_handler._protocol.mock_wire_data.set_extension_config_requested_version(str(CURRENT_VERSION)) + update_handler._protocol.mock_wire_data.set_version_in_agent_family(str(CURRENT_VERSION)) update_handler._protocol.mock_wire_data.set_incarnation(2) update_handler.run(debug=True) @@ -1644,7 +1644,7 @@ def reload_conf(url, protocol): self.assertGreaterEqual(update_handler._protocol.mock_wire_data.call_counts["manifest_of_ga.xml"], 1, "only 1 agent manifest call should've been made - 1 per incarnation") - def test_it_should_update_to_largest_version_if_requested_version_not_available(self): + def test_it_should_update_to_largest_version_if_rsm_version_not_available(self): no_of_iterations = 100 # Set the test environment by adding 20 random agents to the agent directory @@ -1659,7 +1659,7 @@ def reload_conf(url, protocol): "goalstate"] >= 5: reload_conf.call_count += 1 - # By this point, the GS with requested version should've been executed. Verify that + # By this point, the GS with rsm version should've been executed. Verify that self.__assert_agent_directories_available(versions=[str(CURRENT_VERSION)]) # Update the ga_manifest and incarnation to send largest version manifest @@ -1764,16 +1764,16 @@ def reload_conf(url, protocol): self.__assert_upgrade_telemetry_emitted(mock_telemetry, version="99999.0.0.0") self.__assert_agent_directories_exist_and_others_dont_exist(versions=["99999.0.0.0", str(CURRENT_VERSION)]) - def test_it_should_not_download_anything_if_requested_version_is_current_version(self): + def test_it_should_not_download_anything_if_rsm_version_is_current_version(self): data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" # Set the test environment by adding 20 random agents to the agent directory self.prepare_agents() self.assertEqual(20, self.agent_count(), "Agent directories not set properly") with self.__get_update_handler(test_data=data_file) as (update_handler, _): - update_handler._protocol.mock_wire_data.set_extension_config_requested_version(str(CURRENT_VERSION)) + update_handler._protocol.mock_wire_data.set_version_in_agent_family(str(CURRENT_VERSION)) update_handler._protocol.mock_wire_data.set_incarnation(2) update_handler.run(debug=True) @@ -1781,7 +1781,7 @@ def test_it_should_not_download_anything_if_requested_version_is_current_version self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") - def test_it_should_skip_wait_to_update_if_requested_version_available(self): + def test_it_should_skip_wait_to_update_if_rsm_version_available(self): no_of_iterations = 100 def reload_conf(url, protocol): @@ -1794,8 +1794,8 @@ def reload_conf(url, protocol): # Assert GA version from status to ensure agent is running fine from the current version self.__assert_ga_version_in_status(protocol.aggregate_status) - # Update the ext-conf and incarnation and add requested version from GS - mock_wire_data.data_files["ext_conf"] = "wire/ext_conf_requested_version.xml" + # Update the ext-conf and incarnation and add rsm version from GS + mock_wire_data.data_files["ext_conf"] = "wire/ext_conf_rsm_version.xml" data_file['ga_manifest'] = "wire/ga_manifest.xml" mock_wire_data.reload() self._add_write_permission_to_goal_state_files() @@ -1812,7 +1812,7 @@ def reload_conf(url, protocol): self.assertGreater(reload_conf.call_count, 0, "Reload conf not updated") self.assertLess(update_handler.get_iterations(), no_of_iterations, - "The code should've exited as soon as requested version was found") + "The code should've exited as soon as rsm version was found") self.__assert_exit_code_successful(update_handler) self.__assert_upgrade_telemetry_emitted(mock_telemetry, version="9.9.9.10") @@ -1825,9 +1825,9 @@ def test_it_should_mark_current_agent_as_bad_version_on_downgrade(self): downgraded_version = "2.5.0" data_file = wire_protocol_data.DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_requested_version.xml" + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self.__get_update_handler(test_data=data_file) as (update_handler, mock_telemetry): - update_handler._protocol.mock_wire_data.set_extension_config_requested_version(downgraded_version) + update_handler._protocol.mock_wire_data.set_version_in_agent_family(downgraded_version) update_handler._protocol.mock_wire_data.set_incarnation(2) update_handler.run(debug=True) @@ -1865,9 +1865,9 @@ def reload_conf(url, protocol): reload_conf.call_count = 0 data_file = wire_protocol_data.DATA_FILE.copy() - data_file['ext_conf'] = "wire/ext_conf_requested_version.xml" + data_file['ext_conf'] = "wire/ext_conf_rsm_version.xml" with self.__get_update_handler(iterations=no_of_iterations, test_data=data_file, reload_conf=reload_conf) as (update_handler, mock_telemetry): - update_handler._protocol.mock_wire_data.set_extension_config_requested_version(str(CURRENT_VERSION)) + update_handler._protocol.mock_wire_data.set_version_in_agent_family(str(CURRENT_VERSION)) update_handler._protocol.mock_wire_data.set_incarnation(20) update_handler.run(debug=True) diff --git a/tests/lib/wire_protocol_data.py b/tests/lib/wire_protocol_data.py index 907640a790..9502a64133 100644 --- a/tests/lib/wire_protocol_data.py +++ b/tests/lib/wire_protocol_data.py @@ -463,7 +463,7 @@ def set_extension_config(self, ext_conf_file): def set_ga_manifest(self, ga_manifest): self.ga_manifest = load_data(ga_manifest) - def set_extension_config_requested_version(self, version): + def set_version_in_agent_family(self, version): self.ext_conf = WireProtocolData.replace_xml_element_value(self.ext_conf, "Version", version) def set_extension_config_is_vm_enabled_for_rsm_upgrades(self, is_vm_enabled_for_rsm_upgrades): diff --git a/tests_e2e/tests/scripts/agent_update-wait_for_rsm_gs.py b/tests_e2e/tests/scripts/agent_update-wait_for_rsm_gs.py index 016bcd8c62..c65047903a 100755 --- a/tests_e2e/tests/scripts/agent_update-wait_for_rsm_gs.py +++ b/tests_e2e/tests/scripts/agent_update-wait_for_rsm_gs.py @@ -35,8 +35,8 @@ def get_requested_version(gs: GoalState) -> str: raise Exception( u"No manifest links found for agent family Test, skipping agent update verification") manifest = agent_family_manifests[0] - if manifest.is_requested_version_specified and manifest.requested_version is not None: - return str(manifest.requested_version) + if manifest.is_requested_version_specified and manifest.version is not None: + return str(manifest.version) return "" From 950673e69cc106ab9d9508e693c11dbadb28e413 Mon Sep 17 00:00:00 2001 From: nnandigam Date: Sun, 26 Nov 2023 19:48:26 -0800 Subject: [PATCH 06/11] addressed comments --- azurelinuxagent/common/conf.py | 4 +- ...sions_goal_state_from_extensions_config.py | 4 +- .../extensions_goal_state_from_vm_settings.py | 4 +- azurelinuxagent/common/protocol/restapi.py | 4 +- azurelinuxagent/ga/agent_update_handler.py | 521 +++--------------- azurelinuxagent/ga/ga_version_updater.py | 157 ++++++ azurelinuxagent/ga/rsm_version_updater.py | 159 ++++++ .../ga/self_update_version_updater.py | 181 ++++++ azurelinuxagent/ga/update.py | 2 +- tests/ga/test_agent_update_handler.py | 32 +- tests/ga/test_update.py | 6 +- 11 files changed, 611 insertions(+), 463 deletions(-) create mode 100644 azurelinuxagent/ga/ga_version_updater.py create mode 100644 azurelinuxagent/ga/rsm_version_updater.py create mode 100644 azurelinuxagent/ga/self_update_version_updater.py diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py index 57d6c9d280..e6e926355e 100644 --- a/azurelinuxagent/common/conf.py +++ b/azurelinuxagent/common/conf.py @@ -479,8 +479,8 @@ def get_autoupdate_enabled(conf=__conf__): return conf.get_switch("AutoUpdate.Enabled", True) -def get_autoupdate_frequency(conf=__conf__): - return conf.get_int("Autoupdate.Frequency", 3600) +def get_agentupdate_frequency(conf=__conf__): + return conf.get_int("AgentUpdate.Frequency", 3600) def get_enable_overprovisioning(conf=__conf__): diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py index f8a25c2996..5894c5972c 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py @@ -65,7 +65,9 @@ def _parse_extensions_config(self, xml_text, wire_client): is_vm_enabled_for_rsm_upgrades = findtext(ga_family, "IsVMEnabledForRSMUpgrades") uris_list = find(ga_family, "Uris") uris = findall(uris_list, "Uri") - family = VMAgentFamily(name, version) + family = VMAgentFamily(name) + if version is not None: + family.version = version if is_version_from_rsm is not None: family.is_version_from_rsm = is_version_from_rsm.lower() == "true" if is_vm_enabled_for_rsm_upgrades is not None: diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py index afbb1b7f31..5f6fd61a63 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py @@ -274,7 +274,9 @@ def _parse_agent_manifests(self, vm_settings): uris = family.get("uris") if uris is None: uris = [] - agent_family = VMAgentFamily(name, version) + agent_family = VMAgentFamily(name) + if version is not None: + agent_family.version = version if is_version_from_rsm is not None: agent_family.is_version_from_rsm = is_version_from_rsm if is_vm_enabled_for_rsm_upgrades is not None: diff --git a/azurelinuxagent/common/protocol/restapi.py b/azurelinuxagent/common/protocol/restapi.py index 0ec34db866..e6524b6e44 100644 --- a/azurelinuxagent/common/protocol/restapi.py +++ b/azurelinuxagent/common/protocol/restapi.py @@ -68,10 +68,10 @@ def __init__(self): class VMAgentFamily(object): - def __init__(self, name, version): + def __init__(self, name): self.name = name # This is the version as specified by the Goal State - self.version = version + self.version = None # Set to None if the property not specified in the GS and later computed True/False based on previous state in agent update self.is_version_from_rsm = None # Set to None if this property not specified in the GS and later computed True/False based on previous state in agent update diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index b951959135..302cb3c7e7 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -1,76 +1,74 @@ +# Microsoft Azure Linux Agent +# +# Copyright 2020 Microsoft Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Requires Python 2.6+ and Openssl 1.0+ import datetime -import glob import json import os -import shutil from azurelinuxagent.common import conf, logger from azurelinuxagent.common.event import add_event, WALAEventOperation from azurelinuxagent.common.exception import AgentUpgradeExitException, AgentUpdateError from azurelinuxagent.common.future import ustr -from azurelinuxagent.common.protocol.extensions_goal_state import GoalStateSource from azurelinuxagent.common.protocol.restapi import VMAgentUpdateStatuses, VMAgentUpdateStatus, VERSION_0 -from azurelinuxagent.common.utils import fileutil, textutil, timeutil +from azurelinuxagent.common.utils import textutil from azurelinuxagent.common.utils.flexible_version import FlexibleVersion -from azurelinuxagent.common.version import get_daemon_version, CURRENT_VERSION, AGENT_NAME, AGENT_DIR_PATTERN -from azurelinuxagent.ga.guestagent import GuestAgent +from azurelinuxagent.common.version import get_daemon_version +from azurelinuxagent.ga.ga_version_updater import VMDisabledRSMUpdates, VMEnabledRSMUpdates +from azurelinuxagent.ga.rsm_version_updater import RSMVersionUpdater +from azurelinuxagent.ga.self_update_version_updater import SelfUpdateVersionUpdater def get_agent_update_handler(protocol): return AgentUpdateHandler(protocol) -class SelfUpdateType(object): - """ - Enum for different modes of Self updates - """ - Hotfix = "Hotfix" - Regular = "Regular" - - -class AgentUpdateHandlerUpdateState(object): - """ - This class is primarily used to maintain the in-memory persistent state for the agent updates. - This state will be persisted throughout the current service run. - """ - def __init__(self): - self.last_attempted_rsm_version_update_time = datetime.datetime.min - self.last_attempted_self_update_hotfix_time = datetime.datetime.min - self.last_attempted_self_update_regular_time = datetime.datetime.min - self.last_attempted_manifest_download_time = datetime.datetime.min - self.last_attempted_update_error_msg = "" - self.last_attempted_update_version = FlexibleVersion("0.0.0.0") - - class AgentUpdateHandler(object): """ - This class handles two type of agent updates and chooses the appropriate updater based on the below conditions: + This class handles two type of agent updates. Handler initializes the updater to SelfUpdateVersionUpdater and switch to appropriate updater based on below conditions: RSM update: This is the update requested by RSM. The contract between CRP and agent is we get following properties in the goal state: version: it will have what version to update isVersionFromRSM: True if the version is from RSM deployment. isVMEnabledForRSMUpgrades: True if the VM is enabled for RSM upgrades. if vm enabled for RSM upgrades, we use RSM update path. But if requested update is not by rsm deployment we ignore the update. - This update is allowed once per (as specified in the conf.get_autoupdate_frequency()) Self update: We fallback to this if above is condition not met. This update to the largest version available in the manifest - we allow update once per (as specified in the conf.get_self_update_hotfix_frequency() or conf.get_self_update_regular_frequency()) Note: Self-update don't support downgrade. + + Handler keeps the rsm state of last update is with RSM or not on every new goal state. Once handler decides which updater to use, then + does following steps: + 1. Retrieve the agent version from the goal state. + 2. Check if we allowed to update for that version. + 3. Log the update message. + 4. Purge the extra agents from disk. + 5. Download the new agent. + 6. Proceed with update. """ def __init__(self, protocol): self._protocol = protocol - self._ga_family = conf.get_autoupdate_gafamily() - self._autoupdate_enabled = conf.get_autoupdate_enabled() self._gs_id = "unknown" + self._ga_family_type = conf.get_autoupdate_gafamily() self._daemon_version = self._get_daemon_version_for_update() - self.update_state = AgentUpdateHandlerUpdateState() + self._last_attempted_update_error_msg = "" - # restore the state of rsm update - if not os.path.exists(self._get_rsm_version_state_file()): - self._is_version_from_rsm = False - self._is_vm_enabled_for_rsm_upgrades = False + # restore the state of rsm update. Default to self-update if last update is not with RSM. + if not self._get_is_last_update_with_rsm(): + self._updater = SelfUpdateVersionUpdater(self._gs_id, datetime.datetime.min) else: - self._is_version_from_rsm = self._get_is_version_from_rsm() - self._is_vm_enabled_for_rsm_upgrades = self._get_is_vm_enabled_for_rsm_upgrades() + self._updater = RSMVersionUpdater(self._gs_id, self._daemon_version, datetime.datetime.min) @staticmethod def _get_daemon_version_for_update(): @@ -82,103 +80,43 @@ def _get_daemon_version_for_update(): return FlexibleVersion("2.2.53") @staticmethod - def _get_rsm_version_state_file(): - # This file keeps the isversionfromrsm and isvmeabledforrsmupgrades of the most recent goal state. - return os.path.join(conf.get_lib_dir(), "rsm_version.json") + def _get_rsm_update_state_file(): + # This file keeps if last attempted update is rsm or not. + return os.path.join(conf.get_lib_dir(), "rsm_update.json") - def _save_rsm_version_state(self, isVersionFromRSM, isVMEnabledForRSMUpgrades, timestamp): + def _save_rsm_update_state(self, isLastUpdateWithRSM): """ - Save the rsm state to the file + Save the rsm state to the file when we switch between rsm and self-update """ try: - with open(self._get_rsm_version_state_file(), "w") as file_: - json.dump({"isVersionFromRSM": isVersionFromRSM, - "isVMEnabledForRSMUpgrades": isVMEnabledForRSMUpgrades, - "timestamp": timestamp}, file_) + with open(self._get_rsm_update_state_file(), "w") as file_: + json.dump({"isLastUpdateWithRSM": isLastUpdateWithRSM}, file_) except Exception as e: - logger.warn("Error updating the RSM version state ({0}): {1}", self._get_rsm_version_state_file(), ustr(e)) - - def _get_is_version_from_rsm(self): - """ - Returns isVersionFromRSM property of most recent goal state or False if the most recent - goal state was not added this property or set to False in gs. - """ - if not os.path.exists(self._get_rsm_version_state_file()): - return False - - try: - with open(self._get_rsm_version_state_file(), "r") as file_: - return json.load(file_)["isVersionFromRSM"] - except Exception as e: - logger.warn( - "Can't retrieve the is_version_from_rsm most recent rsm state ({0}), will assume it False. Error: {1}", - self._get_rsm_version_state_file(), ustr(e)) - return False + logger.warn("Error updating the RSM state ({0}): {1}", self._get_rsm_update_state_file(), ustr(e)) - def _get_is_vm_enabled_for_rsm_upgrades(self): + def _get_is_last_update_with_rsm(self): """ - Returns isVMEnabledForRSMUpgrades property of most recent goal state or False if the most recent - goal state was not added this property or set to False in gs. + Returns isLastUpdateWithRSM from the state file. """ - if not os.path.exists(self._get_rsm_version_state_file()): + if not os.path.exists(self._get_rsm_update_state_file()): return False try: - with open(self._get_rsm_version_state_file(), "r") as file_: - return json.load(file_)["isVMEnabledForRSMUpgrades"] + with open(self._get_rsm_update_state_file(), "r") as file_: + return json.load(file_)["isLastUpdateWithRSM"] except Exception as e: logger.warn( - "Can't retrieve the is_vm_enabled_for_rsm_upgrades most recent rsm state ({0}), will assume it False. Error: {1}", - self._get_rsm_version_state_file(), ustr(e)) + "Can't retrieve the isLastUpdateWithRSM from rsm state file ({0}), will assume it False. Error: {1}", + self._get_rsm_update_state_file(), ustr(e)) return False - def _get_rsm_state_used_gs_timestamp(self): - """ - Returns the timestamp of th goal state used for rsm state, or min if the most recent - goal state has not been invoked. - """ - if not os.path.exists(self._get_rsm_version_state_file()): - return timeutil.create_timestamp(datetime.datetime.min) - - try: - with open(self._get_rsm_version_state_file(), "r") as file_: - return json.load(file_)["timestamp"] - - except Exception as e: - logger.warn( - "Can't retrieve the timestamp of goal state used for rsm state ({0}), will assume the datetime.min time. Error: {1}", - self._get_rsm_version_state_file(), ustr(e)) - return timeutil.create_timestamp(datetime.datetime.min) - - def _update_rsm_version_state_if_changed(self, goalstate_timestamp, agent_family): - """ - Persisting state to address the issue when HGPA supported(properties present) to unsupported(properties not present) and also sync between Wireserver and HGAP. - Updates the isVrsionFromRSM and isVMEnabledForRSMUpgrades of the most recent goal state retrieved if - properties changed from last rsm state. - Timestamp is the timestamp of the goal state used to update the state. This timestamp helps ignore old goal states when it gets to the vm as a recent goal state. - """ - last_timestamp = self._get_rsm_state_used_gs_timestamp() - # update the state if the goal state is newer than the last goal state used to update the state. - if last_timestamp < goalstate_timestamp: - update_file = False - if agent_family.is_version_from_rsm is not None and self._is_version_from_rsm != agent_family.is_version_from_rsm: - self._is_version_from_rsm = agent_family.is_version_from_rsm - update_file = True - - if agent_family.is_vm_enabled_for_rsm_upgrades is not None and self._is_vm_enabled_for_rsm_upgrades != agent_family.is_vm_enabled_for_rsm_upgrades: - self._is_vm_enabled_for_rsm_upgrades = agent_family.is_vm_enabled_for_rsm_upgrades - update_file = True - - if update_file: - self._save_rsm_version_state(self._is_version_from_rsm, self._is_vm_enabled_for_rsm_upgrades, goalstate_timestamp) - def _get_agent_family_manifest(self, goal_state): """ Get the agent_family from last GS for the given family Returns: first entry of Manifest Exception if no manifests found in the last GS """ - family = self._ga_family + family = self._ga_family_type agent_families = goal_state.extensions_goal_state.agent_families family_found = False agent_family_manifests = [] @@ -194,51 +132,50 @@ def _get_agent_family_manifest(self, goal_state): if len(agent_family_manifests) == 0: raise AgentUpdateError( u"No manifest links found for agent family: {0} for incarnation: {1}, skipping agent update".format( - self._ga_family, self._gs_id)) + family, self._gs_id)) return agent_family_manifests[0] - @staticmethod - def _get_version_from_gs(agent_family): - """ - Get the version from agent family - Returns: version if supported and available in the GS - None if version is missing - """ - if agent_family.version is not None: - return FlexibleVersion(agent_family.version) - return None - def run(self, goal_state): try: # Ignore new agents if update is disabled. The latter flag only used in e2e tests. - if not self._autoupdate_enabled or not conf.get_download_new_agents(): + if not conf.get_autoupdate_enabled() or not conf.get_download_new_agents(): + return + + # verify if agent update is allowed this time (RSM checks 1 hr interval; self-update checks manifest download interval) + if not self._updater.is_update_allowed_this_time(): return agent_family = self._get_agent_family_manifest(goal_state) - version = self._get_version_from_gs(agent_family) gs_id = goal_state.extensions_goal_state.id - self._update_rsm_version_state_if_changed(goal_state.extensions_goal_state.created_on_timestamp, agent_family) - # if version is specified and vm is enabled for rsm upgrades, use rsm update path, else sef-update - if version is None and self._is_vm_enabled_for_rsm_upgrades and self._is_version_from_rsm: - raise AgentUpdateError("VM Enabled for RSM upgrades but version is missing in Goal state: {0}, so skipping agent update".format(gs_id)) - elif conf.get_enable_ga_versioning() and self._is_vm_enabled_for_rsm_upgrades: - updater = RSMVersionUpdater(gs_id, agent_family, None, version, self.update_state, self._is_version_from_rsm, self._daemon_version) - self.update_state.last_attempted_update_version = version - else: - updater = SelfUpdateVersionUpdater(gs_id, agent_family, None, None, self.update_state) + try: + # updater will raise exception if we need to switch to self-update or rsm update + self._updater.check_and_switch_updater_if_changed(agent_family, gs_id) + except VMDisabledRSMUpdates: + msg = "VM not enabled for RSM updates, switching to self-update mode" + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) + self._updater = SelfUpdateVersionUpdater(gs_id, datetime.datetime.now()) + self._save_rsm_update_state(isLastUpdateWithRSM=False) + except VMEnabledRSMUpdates: + msg = "VM enabled for RSM updates, switching to RSM update mode" + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) + self._updater = RSMVersionUpdater(gs_id, self._daemon_version, datetime.datetime.now()) + self._save_rsm_update_state(isLastUpdateWithRSM=True) + + self._updater.retrieve_agent_version(agent_family, goal_state) - # verify if agent update is allowed - if not updater.should_update_agent(goal_state): + if not self._updater.is_retrieved_version_allowed_to_update(agent_family): return - updater.log_new_agent_update_message() - updater.purge_extra_agents_from_disk() - agent = updater.download_and_get_new_agent(self._protocol, goal_state) + self._updater.log_new_agent_update_message() + self._updater.purge_extra_agents_from_disk() + agent = self._updater.download_and_get_new_agent(self._protocol, agent_family, goal_state) if agent.is_blacklisted or not agent.is_downloaded: msg = "Downloaded agent version is in bad state : {0} , skipping agent update".format( str(agent.version)) raise AgentUpdateError(msg) - updater.proceed_with_update() + self._updater.proceed_with_update() except Exception as err: if isinstance(err, AgentUpgradeExitException): @@ -249,308 +186,26 @@ def run(self, goal_state): error_msg = "Unable to update Agent: {0}".format(textutil.format_exception(err)) logger.warn(error_msg) add_event(op=WALAEventOperation.AgentUpgrade, is_success=False, message=error_msg, log_event=False) - self.update_state.last_attempted_update_error_msg = error_msg + self._last_attempted_update_error_msg = error_msg def get_vmagent_update_status(self): """ This function gets the VMAgent update status as per the last attempted update. Returns: None if fail to report or update never attempted with rsm version specified in GS + Note: We send the status regardless of updater type. Since we call this main loop, want to avoid fetching agent family to decide and send only if + vm enabled for rsm updates. """ try: - if conf.get_enable_ga_versioning() and self._is_vm_enabled_for_rsm_upgrades and self._is_version_from_rsm: - if not self.update_state.last_attempted_update_error_msg: + if conf.get_enable_ga_versioning(): + if not self._last_attempted_update_error_msg: status = VMAgentUpdateStatuses.Success code = 0 else: status = VMAgentUpdateStatuses.Error code = 1 - return VMAgentUpdateStatus(expected_version=str(self.update_state.last_attempted_update_version), status=status, code=code, message=self.update_state.last_attempted_update_error_msg) + return VMAgentUpdateStatus(expected_version=str(self._updater.version), status=status, code=code, message=self._last_attempted_update_error_msg) except Exception as err: msg = "Unable to report agent update status: {0}".format(textutil.format_exception(err)) logger.warn(msg) add_event(op=WALAEventOperation.AgentUpgrade, is_success=False, message=msg, log_event=True) return None - - -class GAVersionUpdater(object): - - def __init__(self, gs_id, agent_family, agent_manifest, version, update_state): - self._gs_id = gs_id - self._agent_family = agent_family - self._agent_manifest = agent_manifest - self._version = version - self._update_state = update_state - - def should_update_agent(self, goal_state): - """ - RSM version update: - update is allowed once per (as specified in the conf.get_autoupdate_frequency()) and - if new version not same as current version, not below than daemon version and if version is from rsm request - return false when we don't allow updates. - self-update: - 1) checks if we allowed download manifest as per manifest download frequency - 2) update is allowed once per (as specified in the conf.get_self_update_hotfix_frequency() or conf.get_self_update_regular_frequency()) - 3) not below than current version - return false when we don't allow updates. - """ - raise NotImplementedError - - def log_new_agent_update_message(self): - """ - This function logs the update message after we check agent allowed to update. - """ - raise NotImplementedError - - def purge_extra_agents_from_disk(self): - """ - RSM version update: - remove the agents( including rsm version if exists) from disk except current version. There is a chance that rsm version could exist and/or blacklisted - on previous update attempts. So we should remove it from disk in order to honor current rsm version update. - self-update: - remove the agents from disk except current version and new agent version if exists - """ - raise NotImplementedError - - def proceed_with_update(self): - """ - RSM version update: - upgrade/downgrade to the specified version. - Raises: AgentUpgradeExitException - self-update: - If largest version is found in manifest, upgrade to that version. Downgrade is not supported. - Raises: AgentUpgradeExitException - """ - raise NotImplementedError - - def download_and_get_new_agent(self, protocol, goal_state): - """ - This function downloads the new agent and returns the downloaded version. - """ - if self._agent_manifest is None: # Fetch agent manifest if it's not already done - self._agent_manifest = goal_state.fetch_agent_manifest(self._agent_family.name, self._agent_family.uris) - package_to_download = self._get_agent_package_to_download(self._agent_manifest, self._version) - is_fast_track_goal_state = goal_state.extensions_goal_state.source == GoalStateSource.FastTrack - agent = GuestAgent.from_agent_package(package_to_download, protocol, is_fast_track_goal_state) - return agent - - def _get_agent_package_to_download(self, agent_manifest, version): - """ - Returns the package of the given Version found in the manifest. If not found, returns exception - """ - for pkg in agent_manifest.pkg_list.versions: - if FlexibleVersion(pkg.version) == version: - # Found a matching package, only download that one - return pkg - - raise AgentUpdateError("No matching package found in the agent manifest for version: {0} in goal state incarnation: {1}, " - "skipping agent update".format(str(version), self._gs_id)) - - @staticmethod - def _purge_unknown_agents_from_disk(known_agents): - """ - Remove from disk all directories and .zip files of unknown agents - """ - path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) - - for agent_path in glob.iglob(path): - try: - name = fileutil.trim_ext(agent_path, "zip") - m = AGENT_DIR_PATTERN.match(name) - if m is not None and FlexibleVersion(m.group(1)) not in known_agents: - if os.path.isfile(agent_path): - logger.info(u"Purging outdated Agent file {0}", agent_path) - os.remove(agent_path) - else: - logger.info(u"Purging outdated Agent directory {0}", agent_path) - shutil.rmtree(agent_path) - except Exception as e: - logger.warn(u"Purging {0} raised exception: {1}", agent_path, ustr(e)) - - -class RSMVersionUpdater(GAVersionUpdater): - def __init__(self, gs_id, agent_family, agent_manifest, version, update_state, is_version_from_rsm, daemon_version): - super(RSMVersionUpdater, self).__init__(gs_id, agent_family, agent_manifest, version, update_state) - self._is_version_from_rsm = is_version_from_rsm - self._daemon_version = daemon_version - - @staticmethod - def _get_all_agents_on_disk(): - path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) - return [GuestAgent.from_installed_agent(path=agent_dir) for agent_dir in glob.iglob(path) if os.path.isdir(agent_dir)] - - def _get_available_agents_on_disk(self): - available_agents = [agent for agent in self._get_all_agents_on_disk() if agent.is_available] - return sorted(available_agents, key=lambda agent: agent.version, reverse=True) - - def _is_update_allowed_this_time(self): - """ - update is allowed once per (as specified in the conf.get_autoupdate_frequency()) - If update allowed, we update the last_attempted_rsm_version_update_time to current time. - """ - now = datetime.datetime.now() - - if self._update_state.last_attempted_rsm_version_update_time != datetime.datetime.min: - next_attempt_time = self._update_state.last_attempted_rsm_version_update_time + datetime.timedelta( - seconds=conf.get_autoupdate_frequency()) - else: - next_attempt_time = now - - if next_attempt_time > now: - return False - self._update_state.last_attempted_rsm_version_update_time = now - # The time limit elapsed for us to allow updates. - return True - - def should_update_agent(self, goal_state): - if not self._is_update_allowed_this_time(): - return False - - # we don't allow updates if version is not from RSM or downgrades below daemon version or if version is same as current version - if not self._is_version_from_rsm or self._version < self._daemon_version or self._version == CURRENT_VERSION: - return False - - return True - - def log_new_agent_update_message(self): - msg = "New agent version:{0} requested by RSM in Goal state {1}, will update the agent before processing the goal state.".format(str(self._version), self._gs_id) - logger.info(msg) - add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) - - def purge_extra_agents_from_disk(self): - known_agents = [CURRENT_VERSION] - self._purge_unknown_agents_from_disk(known_agents) - - def proceed_with_update(self): - if self._version < CURRENT_VERSION: - # In case of a downgrade, we mark the current agent as bad version to avoid starting it back up ever again - # (the expectation here being that if we get request to a downgrade, - # there's a good reason for not wanting the current version). - prefix = "downgrade" - try: - # We should always have an agent directory for the CURRENT_VERSION - agents_on_disk = self._get_available_agents_on_disk() - current_agent = next(agent for agent in agents_on_disk if agent.version == CURRENT_VERSION) - msg = "Marking the agent {0} as bad version since a downgrade was requested in the GoalState, " \ - "suggesting that we really don't want to execute any extensions using this version".format( - CURRENT_VERSION) - logger.info(msg) - add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) - current_agent.mark_failure(is_fatal=True, reason=msg) - except StopIteration: - logger.warn( - "Could not find a matching agent with current version {0} to blacklist, skipping it".format( - CURRENT_VERSION)) - else: - # In case of an upgrade, we don't need to exclude anything as the daemon will automatically - # start the next available highest version which would be the target version - prefix = "upgrade" - raise AgentUpgradeExitException( - "Agent completed all update checks, exiting current process to {0} to the new Agent version {1}".format(prefix, - self._version)) - - -class SelfUpdateVersionUpdater(GAVersionUpdater): - - @staticmethod - def _get_largest_version(agent_manifest): - """ - Get the largest version from the agent manifest - """ - largest_version = FlexibleVersion("0.0.0.0") - for pkg in agent_manifest.pkg_list.versions: - pkg_version = FlexibleVersion(pkg.version) - if pkg_version > largest_version: - largest_version = pkg_version - return largest_version - - @staticmethod - def _get_agent_upgrade_type(version): - # We follow semantic versioning for the agent, if .. is same, then has changed. - # In this case, we consider it as a Hotfix upgrade. Else we consider it a Regular upgrade. - if version.major == CURRENT_VERSION.major and version.minor == CURRENT_VERSION.minor and version.patch == CURRENT_VERSION.patch: - return SelfUpdateType.Hotfix - return SelfUpdateType.Regular - - def _get_next_upgrade_times(self, now): - """ - Get the next upgrade times - return: Next Hotfix Upgrade Time, Next Regular Upgrade Time - """ - - def get_next_process_time(last_val, frequency): - return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) - - next_hotfix_time = get_next_process_time(self._update_state.last_attempted_self_update_hotfix_time, - conf.get_self_update_hotfix_frequency()) - next_regular_time = get_next_process_time(self._update_state.last_attempted_self_update_regular_time, - conf.get_self_update_regular_frequency()) - - return next_hotfix_time, next_regular_time - - def _is_update_allowed_this_time(self): - """ - This method ensure that update is allowed only once per (hotfix/Regular) upgrade frequency - """ - now = datetime.datetime.now() - next_hotfix_time, next_regular_time = self._get_next_upgrade_times(now) - upgrade_type = self._get_agent_upgrade_type(self._version) - - if (upgrade_type == SelfUpdateType.Hotfix and next_hotfix_time <= now) or ( - upgrade_type == SelfUpdateType.Regular and next_regular_time <= now): - # Update the last upgrade check time even if no new agent is available for upgrade - self._update_state.last_attempted_self_update_hotfix_time = now - self._update_state.last_attempted_self_update_regular_time = now - return True - return False - - def _should_agent_attempt_manifest_download(self): - """ - The agent should attempt to download the manifest if - the agent has not attempted to download the manifest in the last 1 hour - If we allow update, we update the last attempted manifest download time - """ - now = datetime.datetime.now() - - if self._update_state.last_attempted_manifest_download_time != datetime.datetime.min: - next_attempt_time = self._update_state.last_attempted_manifest_download_time + datetime.timedelta(seconds=conf.get_autoupdate_frequency()) - else: - next_attempt_time = now - - if next_attempt_time > now: - return False - self._update_state.last_attempted_manifest_download_time = now - return True - - def should_update_agent(self, goal_state): - # First we check if we allowed to download the manifest - if not self._should_agent_attempt_manifest_download(): - return False - - # Fetch agent manifest to find largest version - self._agent_manifest = goal_state.fetch_agent_manifest(self._agent_family.name, self._agent_family.uris) - largest_version = self._get_largest_version(self._agent_manifest) - self._version = largest_version - - if not self._is_update_allowed_this_time(): - return False - - if self._version <= CURRENT_VERSION: - return False - - return True - - def log_new_agent_update_message(self): - msg = "Self-update discovered new agent version:{0} in agent manifest for goal state {1}, will update the agent before processing the goal state.".format( - str(self._version), self._gs_id) - logger.info(msg) - add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) - - def purge_extra_agents_from_disk(self): - known_agents = [CURRENT_VERSION, self._version] - self._purge_unknown_agents_from_disk(known_agents) - - def proceed_with_update(self): - if self._version > CURRENT_VERSION: - # In case of an upgrade, we don't need to exclude anything as the daemon will automatically - # start the next available highest version which would be the target version - raise AgentUpgradeExitException("Agent completed all update checks, exiting current process to upgrade to the new Agent version {0}".format(self._version)) \ No newline at end of file diff --git a/azurelinuxagent/ga/ga_version_updater.py b/azurelinuxagent/ga/ga_version_updater.py new file mode 100644 index 0000000000..710af732be --- /dev/null +++ b/azurelinuxagent/ga/ga_version_updater.py @@ -0,0 +1,157 @@ +# Microsoft Azure Linux Agent +# +# Copyright 2020 Microsoft Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Requires Python 2.6+ and Openssl 1.0+ + +import glob +import os +import shutil + +from azurelinuxagent.common import conf, logger +from azurelinuxagent.common.exception import AgentUpdateError +from azurelinuxagent.common.future import ustr +from azurelinuxagent.common.protocol.extensions_goal_state import GoalStateSource +from azurelinuxagent.common.utils import fileutil +from azurelinuxagent.common.utils.flexible_version import FlexibleVersion +from azurelinuxagent.common.version import AGENT_NAME, AGENT_DIR_PATTERN +from azurelinuxagent.ga.guestagent import GuestAgent + + +class VMEnabledRSMUpdates(TypeError): + """ + Thrown when agent needs to switch to RSM update mode if vm turn on RSM updates + """ + + +class VMDisabledRSMUpdates(TypeError): + """ + Thrown when agent needs to switch to self update mode if vm turn off RSM updates + """ + + +class GAVersionUpdater(object): + + def __init__(self, gs_id): + self._gs_id = gs_id + self._version = FlexibleVersion("0.0.0.0") # Initialize to zero and retrieve from goal state later stage + self._agent_manifest = None # Initialize to None and fetch from goal state at different stage for different updater + + def is_update_allowed_this_time(self): + """ + This function checks if we allowed to update the agent. + return false when we don't allow updates. + """ + raise NotImplementedError + + def check_and_switch_updater_if_changed(self, agent_family, gs_id): + """ + checks and raise the updater exception if we need to switch to self-update from rsm update or vice versa + @param agent_family: goal state agent family + @param gs_id: incarnation of the goal state + @return: VMDisabledRSMUpdates: raise when agent need to stop rsm updates and switch to self-update + VMEnabledRSMUpdates: raise when agent need to switch to rsm update + """ + raise NotImplementedError + + def retrieve_agent_version(self, agent_family, goal_state): + """ + This function fetches the agent version from the goal state for the given family. + @param agent_family: goal state agent family + @param goal_state: goal state + """ + raise NotImplementedError + + def is_retrieved_version_allowed_to_update(self, goal_state): + """ + Checks all base condition if new version allow to update. + @param goal_state: goal state + @return: True if allowed to update else False + """ + raise NotImplementedError + + def log_new_agent_update_message(self): + """ + This function logs the update message after we check agent allowed to update. + """ + raise NotImplementedError + + def purge_extra_agents_from_disk(self): + """ + Method remove the extra agents from disk. + """ + raise NotImplementedError + + def proceed_with_update(self): + """ + performs upgrade/downgrade + @return: AgentUpgradeExitException + """ + raise NotImplementedError + + @property + def version(self): + """ + Return version + """ + return self._version + + def download_and_get_new_agent(self, protocol, agent_family, goal_state): + """ + Function downloads the new agent and returns the downloaded version. + @param protocol: protocol object + @param agent_family: agent family + @param goal_state: goal state + @return: GuestAgent: downloaded agent + """ + if self._agent_manifest is None: # Fetch agent manifest if it's not already done + self._agent_manifest = goal_state.fetch_agent_manifest(agent_family.name, agent_family.uris) + package_to_download = self._get_agent_package_to_download(self._agent_manifest, self._version) + is_fast_track_goal_state = goal_state.extensions_goal_state.source == GoalStateSource.FastTrack + agent = GuestAgent.from_agent_package(package_to_download, protocol, is_fast_track_goal_state) + return agent + + def _get_agent_package_to_download(self, agent_manifest, version): + """ + Returns the package of the given Version found in the manifest. If not found, returns exception + """ + for pkg in agent_manifest.pkg_list.versions: + if FlexibleVersion(pkg.version) == version: + # Found a matching package, only download that one + return pkg + + raise AgentUpdateError("No matching package found in the agent manifest for version: {0} in goal state incarnation: {1}, " + "skipping agent update".format(str(version), self._gs_id)) + + @staticmethod + def _purge_unknown_agents_from_disk(known_agents): + """ + Remove from disk all directories and .zip files of unknown agents + """ + path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) + + for agent_path in glob.iglob(path): + try: + name = fileutil.trim_ext(agent_path, "zip") + m = AGENT_DIR_PATTERN.match(name) + if m is not None and FlexibleVersion(m.group(1)) not in known_agents: + if os.path.isfile(agent_path): + logger.info(u"Purging outdated Agent file {0}", agent_path) + os.remove(agent_path) + else: + logger.info(u"Purging outdated Agent directory {0}", agent_path) + shutil.rmtree(agent_path) + except Exception as e: + logger.warn(u"Purging {0} raised exception: {1}", agent_path, ustr(e)) diff --git a/azurelinuxagent/ga/rsm_version_updater.py b/azurelinuxagent/ga/rsm_version_updater.py new file mode 100644 index 0000000000..b6dc994bba --- /dev/null +++ b/azurelinuxagent/ga/rsm_version_updater.py @@ -0,0 +1,159 @@ +# Microsoft Azure Linux Agent +# +# Copyright 2020 Microsoft Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Requires Python 2.6+ and Openssl 1.0+ + +import datetime +import glob +import os + +from azurelinuxagent.common import conf, logger +from azurelinuxagent.common.event import add_event, WALAEventOperation +from azurelinuxagent.common.exception import AgentUpgradeExitException, AgentUpdateError +from azurelinuxagent.common.utils.flexible_version import FlexibleVersion +from azurelinuxagent.common.version import CURRENT_VERSION, AGENT_NAME +from azurelinuxagent.ga.ga_version_updater import GAVersionUpdater, VMDisabledRSMUpdates +from azurelinuxagent.ga.guestagent import GuestAgent + + +class RSMVersionUpdater(GAVersionUpdater): + def __init__(self, gs_id, daemon_version, last_attempted_rsm_version_update_time): + super(RSMVersionUpdater, self).__init__(gs_id) + self._daemon_version = daemon_version + self._last_attempted_rsm_version_update_time = last_attempted_rsm_version_update_time + + @staticmethod + def _get_all_agents_on_disk(): + path = os.path.join(conf.get_lib_dir(), "{0}-*".format(AGENT_NAME)) + return [GuestAgent.from_installed_agent(path=agent_dir) for agent_dir in glob.iglob(path) if + os.path.isdir(agent_dir)] + + def _get_available_agents_on_disk(self): + available_agents = [agent for agent in self._get_all_agents_on_disk() if agent.is_available] + return sorted(available_agents, key=lambda agent: agent.version, reverse=True) + + def is_update_allowed_this_time(self): + """ + update is allowed once per (as specified in the conf.get_autoupdate_frequency()) + If update allowed, we update the last_attempted_rsm_version_update_time to current time. + """ + now = datetime.datetime.now() + + if self._last_attempted_rsm_version_update_time != datetime.datetime.min: + next_attempt_time = self._last_attempted_rsm_version_update_time + datetime.timedelta( + seconds=conf.get_agentupdate_frequency()) + else: + next_attempt_time = now + + if next_attempt_time > now: + return False + self._last_attempted_rsm_version_update_time = now + # The time limit elapsed for us to allow updates. + return True + + def check_and_switch_updater_if_changed(self, agent_family, gs_id): + """ + Checks if there is a new goal state and decide if we need to continue with rsm update or switch to self-update. + Firstly it checks agent supports GA versioning or not. If not, we raise exception to switch to self-update. + if vm is enabled for RSM updates and continue with rsm update, otherwise we raise exception to switch to self-update. + if either isVersionFromRSM or isVMEnabledForRSMUpgrades is missing in the goal state, we ignore the update as we consider it as invalid goal state. + """ + if self._gs_id != gs_id: + self._gs_id = gs_id + if not conf.get_enable_ga_versioning(): + raise VMDisabledRSMUpdates() + + if agent_family.is_vm_enabled_for_rsm_upgrades is None: + raise AgentUpdateError( + "Received invalid goal state:{0}, missing isVMEnabledForRSMUpgrades property. So, skipping agent update".format( + gs_id)) + elif not agent_family.is_vm_enabled_for_rsm_upgrades: + raise VMDisabledRSMUpdates() + else: + if agent_family.is_version_from_rsm is None: + raise AgentUpdateError( + "Received invalid goal state:{0}, missing isVersionFromRSM property. So, skipping agent update".format( + gs_id)) + + def retrieve_agent_version(self, agent_family, goal_state): + """ + Get the agent version from the goal state + """ + if agent_family.version is None and agent_family.is_vm_enabled_for_rsm_upgrades and agent_family.is_version_from_rsm: + raise AgentUpdateError( + "Received invalid goal state:{0}, missing version property. So, skipping agent update".format(self._gs_id)) + self._version = FlexibleVersion(agent_family.version) + + def is_retrieved_version_allowed_to_update(self, agent_family): + """ + Once version retrieved from goal state, we check if we allowed to update for that version + allow update If new version not same as current version, not below than daemon version and if version is from rsm request + """ + + if not agent_family.is_version_from_rsm or self._version < self._daemon_version or self._version == CURRENT_VERSION: + return False + + return True + + def log_new_agent_update_message(self): + """ + This function logs the update message after we check version allowed to update. + """ + msg = "New agent version:{0} requested by RSM in Goal state {1}, will update the agent before processing the goal state.".format( + str(self._version), self._gs_id) + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) + + def purge_extra_agents_from_disk(self): + """ + Remove the agents( including rsm version if exists) from disk except current version. There is a chance that rsm version could exist and/or blacklisted + on previous update attempts. So we should remove it from disk in order to honor current rsm version update. + """ + known_agents = [CURRENT_VERSION] + self._purge_unknown_agents_from_disk(known_agents) + + def proceed_with_update(self): + """ + upgrade/downgrade to the new version. + Raises: AgentUpgradeExitException + """ + if self._version < CURRENT_VERSION: + # In case of a downgrade, we mark the current agent as bad version to avoid starting it back up ever again + # (the expectation here being that if we get request to a downgrade, + # there's a good reason for not wanting the current version). + prefix = "downgrade" + try: + # We should always have an agent directory for the CURRENT_VERSION + agents_on_disk = self._get_available_agents_on_disk() + current_agent = next(agent for agent in agents_on_disk if agent.version == CURRENT_VERSION) + msg = "Marking the agent {0} as bad version since a downgrade was requested in the GoalState, " \ + "suggesting that we really don't want to execute any extensions using this version".format( + CURRENT_VERSION) + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) + current_agent.mark_failure(is_fatal=True, reason=msg) + except StopIteration: + logger.warn( + "Could not find a matching agent with current version {0} to blacklist, skipping it".format( + CURRENT_VERSION)) + else: + # In case of an upgrade, we don't need to exclude anything as the daemon will automatically + # start the next available highest version which would be the target version + prefix = "upgrade" + raise AgentUpgradeExitException( + "Agent completed all update checks, exiting current process to {0} to the new Agent version {1}".format( + prefix, + self._version)) diff --git a/azurelinuxagent/ga/self_update_version_updater.py b/azurelinuxagent/ga/self_update_version_updater.py new file mode 100644 index 0000000000..712f904900 --- /dev/null +++ b/azurelinuxagent/ga/self_update_version_updater.py @@ -0,0 +1,181 @@ +# Microsoft Azure Linux Agent +# +# Copyright 2020 Microsoft Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Requires Python 2.6+ and Openssl 1.0+ + +import datetime + +from azurelinuxagent.common import conf, logger +from azurelinuxagent.common.event import add_event, WALAEventOperation +from azurelinuxagent.common.exception import AgentUpgradeExitException, AgentUpdateError +from azurelinuxagent.common.utils.flexible_version import FlexibleVersion +from azurelinuxagent.common.version import CURRENT_VERSION +from azurelinuxagent.ga.ga_version_updater import GAVersionUpdater, VMEnabledRSMUpdates + + +class SelfUpdateType(object): + """ + Enum for different modes of Self updates + """ + Hotfix = "Hotfix" + Regular = "Regular" + + +class SelfUpdateVersionUpdater(GAVersionUpdater): + def __init__(self, gs_id, last_attempted_manifest_download_time): + super(SelfUpdateVersionUpdater, self).__init__(gs_id) + self._last_attempted_manifest_download_time = last_attempted_manifest_download_time + self._last_attempted_self_update_time = datetime.datetime.min + + @staticmethod + def _get_largest_version(agent_manifest): + """ + Get the largest version from the agent manifest + """ + largest_version = FlexibleVersion("0.0.0.0") + for pkg in agent_manifest.pkg_list.versions: + pkg_version = FlexibleVersion(pkg.version) + if pkg_version > largest_version: + largest_version = pkg_version + return largest_version + + @staticmethod + def _get_agent_upgrade_type(version): + # We follow semantic versioning for the agent, if .. is same, then has changed. + # In this case, we consider it as a Hotfix upgrade. Else we consider it a Regular upgrade. + if version.major == CURRENT_VERSION.major and version.minor == CURRENT_VERSION.minor and version.patch == CURRENT_VERSION.patch: + return SelfUpdateType.Hotfix + return SelfUpdateType.Regular + + def _get_next_upgrade_times(self, now): + """ + Get the next upgrade times + return: Next Hotfix Upgrade Time, Next Regular Upgrade Time + """ + def get_next_process_time(last_val, frequency): + return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) + + next_hotfix_time = get_next_process_time(self._last_attempted_self_update_time, + conf.get_self_update_hotfix_frequency()) + next_regular_time = get_next_process_time(self._last_attempted_self_update_time, + conf.get_self_update_regular_frequency()) + + return next_hotfix_time, next_regular_time + + def _is_new_agent_allowed_update(self): + """ + This method ensure that update is allowed only once per (hotfix/Regular) upgrade frequency + """ + now = datetime.datetime.now() + next_hotfix_time, next_regular_time = self._get_next_upgrade_times(now) + upgrade_type = self._get_agent_upgrade_type(self._version) + + if (upgrade_type == SelfUpdateType.Hotfix and next_hotfix_time <= now) or ( + upgrade_type == SelfUpdateType.Regular and next_regular_time <= now): + # Update the last upgrade check time even if no new agent is available for upgrade + self._last_attempted_self_update_time = now + return True + return False + + def _should_agent_attempt_manifest_download(self): + """ + The agent should attempt to download the manifest if + the agent has not attempted to download the manifest in the last 1 hour + If we allow update, we update the last attempted manifest download time + """ + now = datetime.datetime.now() + + if self._last_attempted_manifest_download_time != datetime.datetime.min: + next_attempt_time = self._last_attempted_manifest_download_time + datetime.timedelta(seconds=conf.get_agentupdate_frequency()) + else: + next_attempt_time = now + + if next_attempt_time > now: + return False + self._last_attempted_manifest_download_time = now + return True + + def is_update_allowed_this_time(self): + """ + Checks if we allowed download manifest as per manifest download frequency + """ + if not self._should_agent_attempt_manifest_download(): + return False + return True + + def check_and_switch_updater_if_changed(self, agent_family, gs_id): + """ + Checks if there is a new goal state and decide if we need to continue with self-update or switch to rsm update. + if vm is not enabled for RSM updates or agent not supports GA versioning then we continue with self update, otherwise we raise exception to switch to rsm update. + if isVersionFromRSM is missing but isVMEnabledForRSMUpgrades is present in the goal state, we ignore the update as we consider it as invalid goal state. + """ + if self._gs_id != gs_id: + self._gs_id = gs_id + if conf.get_enable_ga_versioning() and agent_family.is_vm_enabled_for_rsm_upgrades: + if agent_family.is_version_from_rsm is None: + raise AgentUpdateError( + "Received invalid goal state:{0}, missing isVersionFromRSM property. So, skipping agent update".format( + gs_id)) + else: + raise VMEnabledRSMUpdates() + + def retrieve_agent_version(self, agent_family, goal_state): + """ + Get the largest version from the agent manifest + """ + self._agent_manifest = goal_state.fetch_agent_manifest(agent_family.name, agent_family.uris) + largest_version = self._get_largest_version(self._agent_manifest) + self._version = largest_version + + def is_retrieved_version_allowed_to_update(self, agent_family): + """ + checks update is spread per (as specified in the conf.get_self_update_hotfix_frequency() or conf.get_self_update_regular_frequency()) + or if version below than current version + return false when we don't allow updates. + """ + if not self._is_new_agent_allowed_update(): + return False + + if self._version <= CURRENT_VERSION: + return False + + return True + + def log_new_agent_update_message(self): + """ + This function logs the update message after we check version allowed to update. + """ + msg = "Self-update discovered new agent version:{0} in agent manifest for goal state {1}, will update the agent before processing the goal state.".format( + str(self._version), self._gs_id) + logger.info(msg) + add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) + + def purge_extra_agents_from_disk(self): + """ + Remove the agents from disk except current version and new agent version if exists + """ + known_agents = [CURRENT_VERSION, self._version] + self._purge_unknown_agents_from_disk(known_agents) + + def proceed_with_update(self): + """ + upgrade to largest version. Downgrade is not supported. + Raises: AgentUpgradeExitException + """ + if self._version > CURRENT_VERSION: + # In case of an upgrade, we don't need to exclude anything as the daemon will automatically + # start the next available highest version which would be the target version + raise AgentUpgradeExitException("Agent completed all update checks, exiting current process to upgrade to the new Agent version {0}".format(self._version)) diff --git a/azurelinuxagent/ga/update.py b/azurelinuxagent/ga/update.py index 147402709c..0becb7804f 100644 --- a/azurelinuxagent/ga/update.py +++ b/azurelinuxagent/ga/update.py @@ -756,7 +756,7 @@ def log_if_agent_versioning_feature_disabled(): log_if_int_changed_from_default("OS.EnableFirewallPeriod", conf.get_enable_firewall_period()) if conf.get_autoupdate_enabled(): - log_if_int_changed_from_default("Autoupdate.Frequency", conf.get_autoupdate_frequency()) + log_if_int_changed_from_default("Autoupdate.Frequency", conf.get_agentupdate_frequency()) if conf.get_enable_fast_track(): log_if_op_disabled("Debug.EnableFastTrack", conf.get_enable_fast_track()) diff --git a/tests/ga/test_agent_update_handler.py b/tests/ga/test_agent_update_handler.py index 91d40c2a43..959fbc619b 100644 --- a/tests/ga/test_agent_update_handler.py +++ b/tests/ga/test_agent_update_handler.py @@ -27,7 +27,7 @@ def setUp(self): clear_singleton_instances(ProtocolUtil) @contextlib.contextmanager - def _get_agent_update_handler(self, test_data=None, autoupdate_frequency=0.001, autoupdate_enabled=True, protocol_get_error=False): + def _get_agent_update_handler(self, test_data=None, agentupdate_frequency=0.001, autoupdate_enabled=True, protocol_get_error=False): # Default to DATA_FILE of test_data parameter raises the pylint warning # W0102: Dangerous default value DATA_FILE (builtins.dict) as argument (dangerous-default-value) test_data = DATA_FILE if test_data is None else test_data @@ -54,10 +54,10 @@ def put_handler(url, *args, **_): protocol.set_http_handlers(http_get_handler=get_handler, http_put_handler=put_handler) with patch("azurelinuxagent.common.conf.get_autoupdate_enabled", return_value=autoupdate_enabled): - with patch("azurelinuxagent.common.conf.get_autoupdate_frequency", return_value=autoupdate_frequency): + with patch("azurelinuxagent.common.conf.get_agentupdate_frequency", return_value=agentupdate_frequency): with patch("azurelinuxagent.common.conf.get_autoupdate_gafamily", return_value="Prod"): with patch("azurelinuxagent.common.conf.get_enable_ga_versioning", return_value=True): - with patch("azurelinuxagent.ga.agent_update_handler.add_event") as mock_telemetry: + with patch("azurelinuxagent.common.event.EventLogger.add_event") as mock_telemetry: agent_update_handler = get_agent_update_handler(protocol) agent_update_handler._protocol = protocol yield agent_update_handler, mock_telemetry @@ -122,12 +122,12 @@ def test_it_should_update_to_largest_version_if_ga_versioning_disabled(self): self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) - def test_it_should_update_to_largest_version_if_time_window_not_elapsed(self): + def test_it_should_not_update_to_largest_version_if_time_window_not_elapsed(self): self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_uris.xml" - with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=10) as (agent_update_handler, _): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") @@ -171,7 +171,7 @@ def test_it_should_not_agent_update_if_last_attempted_update_time_not_elapsed(se data_file = DATA_FILE.copy() data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" version = "5.2.0.1" - with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10) as (agent_update_handler, mock_telemetry): + with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=10) as (agent_update_handler, mock_telemetry): agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() @@ -200,7 +200,7 @@ def test_it_should_not_download_manifest_again_if_last_attempted_download_time_n self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10, protocol_get_error=True) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=10, protocol_get_error=True) as (agent_update_handler, _): # making multiple agent update attempts agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -214,7 +214,7 @@ def test_it_should_download_manifest_if_last_attempted_download_time_is_elapsed( data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=0.00001, protocol_get_error=True) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=0.00001, protocol_get_error=True) as (agent_update_handler, _): # making multiple agent update attempts agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) @@ -402,7 +402,7 @@ def test_it_should_report_update_status_with_missing_rsm_version_error(self): vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Error, vm_agent_update_status.status) self.assertEqual(1, vm_agent_update_status.code) - self.assertIn("VM Enabled for RSM upgrades but version is missing in Goal state", vm_agent_update_status.message) + self.assertIn("missing version property. So, skipping agent update", vm_agent_update_status.message) def test_it_should_not_log_same_error_next_hours(self): data_file = DATA_FILE.copy() @@ -438,17 +438,13 @@ def test_it_should_save_rsm_state_of_the_most_recent_goal_state(self): with self.assertRaises(AgentUpgradeExitException): agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - state_file = os.path.join(conf.get_lib_dir(), "rsm_version.json") + state_file = os.path.join(conf.get_lib_dir(), "rsm_update.json") self.assertTrue(os.path.exists(state_file), "The rsm properties was not saved (can't find {0})".format(state_file)) with open(state_file, "r") as state_file_: state = json.load(state_file_) - self.assertTrue(state["isVersionFromRSM"], "{0} does not contain True".format(state_file)) - self.assertTrue(state["isVMEnabledForRSMUpgrades"], "{0} does not contain True".format(state_file)) - self.assertEqual(agent_update_handler._is_version_from_rsm, state["isVersionFromRSM"], "{0} does not contain the expected value".format(state_file)) - self.assertEqual(agent_update_handler._is_vm_enabled_for_rsm_upgrades, state["isVMEnabledForRSMUpgrades"], "{0} does not contain the expected value".format(state_file)) - self.assertEqual(agent_update_handler._protocol.get_goal_state().extensions_goal_state.created_on_timestamp, state["timestamp"], "{0} does not contain the expected value".format(state_file)) + self.assertTrue(state["isLastUpdateWithRSM"], "{0} does not contain True".format(state_file)) # check if state gets updated if most recent goal state has different values agent_update_handler._protocol.mock_wire_data.set_extension_config_is_vm_enabled_for_rsm_upgrades("False") @@ -461,8 +457,4 @@ def test_it_should_save_rsm_state_of_the_most_recent_goal_state(self): with open(state_file, "r") as state_file_: state = json.load(state_file_) - self.assertTrue(state["isVersionFromRSM"], "{0} does not contain True".format(state_file)) - self.assertFalse(state["isVMEnabledForRSMUpgrades"], "{0} does not contain False".format(state_file)) - self.assertEqual(agent_update_handler._is_version_from_rsm, state["isVersionFromRSM"], "{0} does not contain the expected value".format(state_file)) - self.assertEqual(agent_update_handler._is_vm_enabled_for_rsm_upgrades, state["isVMEnabledForRSMUpgrades"], "{0} does not contain the expected value".format(state_file)) - self.assertEqual(agent_update_handler._protocol.get_goal_state().extensions_goal_state.created_on_timestamp, state["timestamp"], "{0} does not contain the expected value".format(state_file)) \ No newline at end of file + self.assertFalse(state["isLastUpdateWithRSM"], "{0} does not contain False".format(state_file)) diff --git a/tests/ga/test_update.py b/tests/ga/test_update.py index 8ef6f41464..3aff3bc94f 100644 --- a/tests/ga/test_update.py +++ b/tests/ga/test_update.py @@ -1288,7 +1288,7 @@ def update_goal_state_and_run_handler(autoupdate_enabled=True): update_status = protocol.aggregate_status['aggregateStatus']['guestAgentStatus']["updateStatus"] self.assertEqual(VMAgentUpdateStatuses.Error, update_status['status'], "Status should be an error") self.assertEqual(update_status['code'], 1, "incorrect code reported") - self.assertIn("VM Enabled for RSM upgrades but version is missing in Goal state", update_status['formattedMessage']['message'], "incorrect message reported") + self.assertIn("missing version property. So, skipping agent update", update_status['formattedMessage']['message'], "incorrect message reported") # Case 2: rsm version in GS == Current Version; updateStatus should be Success protocol.mock_wire_data.set_extension_config("wire/ext_conf_rsm_version.xml") @@ -1430,10 +1430,10 @@ def test_run_emits_restart_event(self): class TestAgentUpgrade(UpdateTestCase): @contextlib.contextmanager - def create_conf_mocks(self, autoupdate_frequency, hotfix_frequency, normal_frequency): + def create_conf_mocks(self, agentupdate_frequency, hotfix_frequency, normal_frequency): # Disabling extension processing to speed up tests as this class deals with testing agent upgrades with patch("azurelinuxagent.common.conf.get_extensions_enabled", return_value=False): - with patch("azurelinuxagent.common.conf.get_autoupdate_frequency", return_value=autoupdate_frequency): + with patch("azurelinuxagent.common.conf.get_agentupdate_frequency", return_value=agentupdate_frequency): with patch("azurelinuxagent.common.conf.get_self_update_hotfix_frequency", return_value=hotfix_frequency): with patch("azurelinuxagent.common.conf.get_self_update_regular_frequency", return_value=normal_frequency): with patch("azurelinuxagent.common.conf.get_autoupdate_gafamily", return_value="Prod"): From 6bcabdfa38bbe6788997fa3978f59eddaeb628f7 Mon Sep 17 00:00:00 2001 From: Nageswara Nandigam Date: Sun, 26 Nov 2023 21:52:21 -0800 Subject: [PATCH 07/11] pylint --- azurelinuxagent/ga/agent_update_handler.py | 8 ++++---- azurelinuxagent/ga/ga_version_updater.py | 8 ++++---- tests/ga/test_update.py | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index 302cb3c7e7..2182d2ede4 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -84,13 +84,13 @@ def _get_rsm_update_state_file(): # This file keeps if last attempted update is rsm or not. return os.path.join(conf.get_lib_dir(), "rsm_update.json") - def _save_rsm_update_state(self, isLastUpdateWithRSM): + def _save_rsm_update_state(self, is_last_update_with_RSM): """ Save the rsm state to the file when we switch between rsm and self-update """ try: with open(self._get_rsm_update_state_file(), "w") as file_: - json.dump({"isLastUpdateWithRSM": isLastUpdateWithRSM}, file_) + json.dump({"isLastUpdateWithRSM": is_last_update_with_RSM}, file_) except Exception as e: logger.warn("Error updating the RSM state ({0}): {1}", self._get_rsm_update_state_file(), ustr(e)) @@ -156,13 +156,13 @@ def run(self, goal_state): logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) self._updater = SelfUpdateVersionUpdater(gs_id, datetime.datetime.now()) - self._save_rsm_update_state(isLastUpdateWithRSM=False) + self._save_rsm_update_state(is_last_update_with_RSM=False) except VMEnabledRSMUpdates: msg = "VM enabled for RSM updates, switching to RSM update mode" logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) self._updater = RSMVersionUpdater(gs_id, self._daemon_version, datetime.datetime.now()) - self._save_rsm_update_state(isLastUpdateWithRSM=True) + self._save_rsm_update_state(is_last_update_with_RSM=True) self._updater.retrieve_agent_version(agent_family, goal_state) diff --git a/azurelinuxagent/ga/ga_version_updater.py b/azurelinuxagent/ga/ga_version_updater.py index 710af732be..a4709cf320 100644 --- a/azurelinuxagent/ga/ga_version_updater.py +++ b/azurelinuxagent/ga/ga_version_updater.py @@ -59,7 +59,7 @@ def is_update_allowed_this_time(self): def check_and_switch_updater_if_changed(self, agent_family, gs_id): """ checks and raise the updater exception if we need to switch to self-update from rsm update or vice versa - @param agent_family: goal state agent family + @param agent_family: agent family @param gs_id: incarnation of the goal state @return: VMDisabledRSMUpdates: raise when agent need to stop rsm updates and switch to self-update VMEnabledRSMUpdates: raise when agent need to switch to rsm update @@ -69,15 +69,15 @@ def check_and_switch_updater_if_changed(self, agent_family, gs_id): def retrieve_agent_version(self, agent_family, goal_state): """ This function fetches the agent version from the goal state for the given family. - @param agent_family: goal state agent family + @param agent_family: agent family @param goal_state: goal state """ raise NotImplementedError - def is_retrieved_version_allowed_to_update(self, goal_state): + def is_retrieved_version_allowed_to_update(self, agent_family): """ Checks all base condition if new version allow to update. - @param goal_state: goal state + @param agent_family: agent family @return: True if allowed to update else False """ raise NotImplementedError diff --git a/tests/ga/test_update.py b/tests/ga/test_update.py index 3aff3bc94f..c45cdc5fd3 100644 --- a/tests/ga/test_update.py +++ b/tests/ga/test_update.py @@ -2015,7 +2015,7 @@ def _create_agent_families(family, versions): families = [] if len(versions) > 0 and family is not None: - manifest = VMAgentFamily(name=family, version=None) + manifest = VMAgentFamily(name=family) for i in range(0, 10): manifest.uris.append("https://nowhere.msft/agent/{0}".format(i)) families.append(manifest) From 11d7a4498ef26178299d6443f6688373e88444db Mon Sep 17 00:00:00 2001 From: nnandigam Date: Mon, 27 Nov 2023 10:11:29 -0800 Subject: [PATCH 08/11] agent family --- azurelinuxagent/common/protocol/restapi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azurelinuxagent/common/protocol/restapi.py b/azurelinuxagent/common/protocol/restapi.py index e6524b6e44..35b40cf13c 100644 --- a/azurelinuxagent/common/protocol/restapi.py +++ b/azurelinuxagent/common/protocol/restapi.py @@ -70,11 +70,11 @@ def __init__(self): class VMAgentFamily(object): def __init__(self, name): self.name = name - # This is the version as specified by the Goal State + # Two-state: None, string. Set to None if version not specified in the GS self.version = None - # Set to None if the property not specified in the GS and later computed True/False based on previous state in agent update + # Tri-state: None, True, False. Set to None if this property not specified in the GS. self.is_version_from_rsm = None - # Set to None if this property not specified in the GS and later computed True/False based on previous state in agent update + # Tri-state: None, True, False. Set to None if this property not specified in the GS. self.is_vm_enabled_for_rsm_upgrades = None self.uris = [] From d7f82507952b3ae479223928c37be0ba3f9b2102 Mon Sep 17 00:00:00 2001 From: Nageswara Nandigam Date: Mon, 27 Nov 2023 10:50:38 -0800 Subject: [PATCH 09/11] state name --- azurelinuxagent/ga/agent_update_handler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index 2182d2ede4..e9e4623e2b 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -84,13 +84,13 @@ def _get_rsm_update_state_file(): # This file keeps if last attempted update is rsm or not. return os.path.join(conf.get_lib_dir(), "rsm_update.json") - def _save_rsm_update_state(self, is_last_update_with_RSM): + def _save_rsm_update_state(self, is_last_update_with_rsm): """ Save the rsm state to the file when we switch between rsm and self-update """ try: with open(self._get_rsm_update_state_file(), "w") as file_: - json.dump({"isLastUpdateWithRSM": is_last_update_with_RSM}, file_) + json.dump({"isLastUpdateWithRSM": is_last_update_with_rsm}, file_) except Exception as e: logger.warn("Error updating the RSM state ({0}): {1}", self._get_rsm_update_state_file(), ustr(e)) @@ -156,13 +156,13 @@ def run(self, goal_state): logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) self._updater = SelfUpdateVersionUpdater(gs_id, datetime.datetime.now()) - self._save_rsm_update_state(is_last_update_with_RSM=False) + self._save_rsm_update_state(is_last_update_with_rsm=False) except VMEnabledRSMUpdates: msg = "VM enabled for RSM updates, switching to RSM update mode" logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) self._updater = RSMVersionUpdater(gs_id, self._daemon_version, datetime.datetime.now()) - self._save_rsm_update_state(is_last_update_with_RSM=True) + self._save_rsm_update_state(is_last_update_with_rsm=True) self._updater.retrieve_agent_version(agent_family, goal_state) From cdb718cc18ded55c763b6c16f240ad2b86e0551f Mon Sep 17 00:00:00 2001 From: nnandigam Date: Wed, 29 Nov 2023 17:58:16 -0800 Subject: [PATCH 10/11] address comments --- azurelinuxagent/common/conf.py | 4 +- ...sions_goal_state_from_extensions_config.py | 7 +- .../extensions_goal_state_from_vm_settings.py | 9 +- azurelinuxagent/ga/agent_update_handler.py | 75 +++++------ azurelinuxagent/ga/ga_version_updater.py | 25 ++-- azurelinuxagent/ga/rsm_version_updater.py | 52 +++----- .../ga/self_update_version_updater.py | 55 ++++---- azurelinuxagent/ga/update.py | 9 +- tests/ga/test_agent_update_handler.py | 117 ++++++++---------- tests/ga/test_update.py | 11 +- 10 files changed, 175 insertions(+), 189 deletions(-) diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py index e6e926355e..df88b1f52a 100644 --- a/azurelinuxagent/common/conf.py +++ b/azurelinuxagent/common/conf.py @@ -479,8 +479,8 @@ def get_autoupdate_enabled(conf=__conf__): return conf.get_switch("AutoUpdate.Enabled", True) -def get_agentupdate_frequency(conf=__conf__): - return conf.get_int("AgentUpdate.Frequency", 3600) +def get_autoupdate_frequency(conf=__conf__): + return conf.get_int("AutoUpdate.Frequency", 3600) def get_enable_overprovisioning(conf=__conf__): diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py index 5894c5972c..5f81105783 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py @@ -66,11 +66,10 @@ def _parse_extensions_config(self, xml_text, wire_client): uris_list = find(ga_family, "Uris") uris = findall(uris_list, "Uri") family = VMAgentFamily(name) - if version is not None: - family.version = version - if is_version_from_rsm is not None: + family.version = version + if is_version_from_rsm is not None: # checking None because converting string to lower family.is_version_from_rsm = is_version_from_rsm.lower() == "true" - if is_vm_enabled_for_rsm_upgrades is not None: + if is_vm_enabled_for_rsm_upgrades is not None: # checking None because converting string to lower family.is_vm_enabled_for_rsm_upgrades = is_vm_enabled_for_rsm_upgrades.lower() == "true" for uri in uris: family.uris.append(gettext(uri)) diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py index 5f6fd61a63..041ddedcda 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_vm_settings.py @@ -275,12 +275,9 @@ def _parse_agent_manifests(self, vm_settings): if uris is None: uris = [] agent_family = VMAgentFamily(name) - if version is not None: - agent_family.version = version - if is_version_from_rsm is not None: - agent_family.is_version_from_rsm = is_version_from_rsm - if is_vm_enabled_for_rsm_upgrades is not None: - agent_family.is_vm_enabled_for_rsm_upgrades = is_vm_enabled_for_rsm_upgrades + agent_family.version = version + agent_family.is_version_from_rsm = is_version_from_rsm + agent_family.is_vm_enabled_for_rsm_upgrades = is_vm_enabled_for_rsm_upgrades for u in uris: agent_family.uris.append(u) self._agent_families.append(agent_family) diff --git a/azurelinuxagent/ga/agent_update_handler.py b/azurelinuxagent/ga/agent_update_handler.py index e9e4623e2b..ed157bdf5b 100644 --- a/azurelinuxagent/ga/agent_update_handler.py +++ b/azurelinuxagent/ga/agent_update_handler.py @@ -16,7 +16,6 @@ # # Requires Python 2.6+ and Openssl 1.0+ import datetime -import json import os from azurelinuxagent.common import conf, logger @@ -27,7 +26,7 @@ from azurelinuxagent.common.utils import textutil from azurelinuxagent.common.utils.flexible_version import FlexibleVersion from azurelinuxagent.common.version import get_daemon_version -from azurelinuxagent.ga.ga_version_updater import VMDisabledRSMUpdates, VMEnabledRSMUpdates +from azurelinuxagent.ga.ga_version_updater import RSMUpdates from azurelinuxagent.ga.rsm_version_updater import RSMVersionUpdater from azurelinuxagent.ga.self_update_version_updater import SelfUpdateVersionUpdater @@ -56,6 +55,8 @@ class AgentUpdateHandler(object): 4. Purge the extra agents from disk. 5. Download the new agent. 6. Proceed with update. + + [Note: 1.0.8.147 is the minimum supported version of HGPA which will have the isVersionFromRSM and isVMEnabledForRSMUpgrades properties in vmsettings.] """ def __init__(self, protocol): self._protocol = protocol @@ -68,7 +69,7 @@ def __init__(self, protocol): if not self._get_is_last_update_with_rsm(): self._updater = SelfUpdateVersionUpdater(self._gs_id, datetime.datetime.min) else: - self._updater = RSMVersionUpdater(self._gs_id, self._daemon_version, datetime.datetime.min) + self._updater = RSMVersionUpdater(self._gs_id, self._daemon_version) @staticmethod def _get_daemon_version_for_update(): @@ -81,34 +82,36 @@ def _get_daemon_version_for_update(): @staticmethod def _get_rsm_update_state_file(): - # This file keeps if last attempted update is rsm or not. + """ + This file keeps if last attempted update is rsm or not. + """ return os.path.join(conf.get_lib_dir(), "rsm_update.json") - def _save_rsm_update_state(self, is_last_update_with_rsm): + def _save_rsm_update_state(self): """ - Save the rsm state to the file when we switch between rsm and self-update + Save the rsm state empty file when we switch to RSM """ try: - with open(self._get_rsm_update_state_file(), "w") as file_: - json.dump({"isLastUpdateWithRSM": is_last_update_with_rsm}, file_) + with open(self._get_rsm_update_state_file(), "w"): + pass except Exception as e: - logger.warn("Error updating the RSM state ({0}): {1}", self._get_rsm_update_state_file(), ustr(e)) + logger.warn("Error creating the RSM state ({0}): {1}", self._get_rsm_update_state_file(), ustr(e)) - def _get_is_last_update_with_rsm(self): + def _remove_rsm_update_state(self): """ - Returns isLastUpdateWithRSM from the state file. + Remove the rsm state file when we switch to self-update """ - if not os.path.exists(self._get_rsm_update_state_file()): - return False - try: - with open(self._get_rsm_update_state_file(), "r") as file_: - return json.load(file_)["isLastUpdateWithRSM"] + if os.path.exists(self._get_rsm_update_state_file()): + os.remove(self._get_rsm_update_state_file()) except Exception as e: - logger.warn( - "Can't retrieve the isLastUpdateWithRSM from rsm state file ({0}), will assume it False. Error: {1}", - self._get_rsm_update_state_file(), ustr(e)) - return False + logger.warn("Error removing the RSM state ({0}): {1}", self._get_rsm_update_state_file(), ustr(e)) + + def _get_is_last_update_with_rsm(self): + """ + Returns True if state file exists as this consider as last update with RSM is true + """ + return os.path.exists(self._get_rsm_update_state_file()) def _get_agent_family_manifest(self, goal_state): """ @@ -127,42 +130,44 @@ def _get_agent_family_manifest(self, goal_state): agent_family_manifests.append(m) if not family_found: - raise AgentUpdateError(u"Agent family: {0} not found in the goal state incarnation: {1}, skipping agent update".format(family, self._gs_id)) + raise AgentUpdateError(u"Agent family: {0} not found in the goal state: {1}, skipping agent update".format(family, self._gs_id)) if len(agent_family_manifests) == 0: raise AgentUpdateError( - u"No manifest links found for agent family: {0} for incarnation: {1}, skipping agent update".format( + u"No manifest links found for agent family: {0} for goal state: {1}, skipping agent update".format( family, self._gs_id)) return agent_family_manifests[0] - def run(self, goal_state): + def run(self, goal_state, ext_gs_updated): try: # Ignore new agents if update is disabled. The latter flag only used in e2e tests. if not conf.get_autoupdate_enabled() or not conf.get_download_new_agents(): return - # verify if agent update is allowed this time (RSM checks 1 hr interval; self-update checks manifest download interval) - if not self._updater.is_update_allowed_this_time(): + # verify if agent update is allowed this time (RSM checks new goal state; self-update checks manifest download interval) + if not self._updater.is_update_allowed_this_time(ext_gs_updated): return + self._gs_id = goal_state.extensions_goal_state.id agent_family = self._get_agent_family_manifest(goal_state) - gs_id = goal_state.extensions_goal_state.id - try: - # updater will raise exception if we need to switch to self-update or rsm update - self._updater.check_and_switch_updater_if_changed(agent_family, gs_id) - except VMDisabledRSMUpdates: + + # updater will return RSM enabled or disabled if we need to switch to self-update or rsm update + updater_mode = self._updater.check_and_switch_updater_if_changed(agent_family, self._gs_id, ext_gs_updated) + + if updater_mode == RSMUpdates.Disabled: msg = "VM not enabled for RSM updates, switching to self-update mode" logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) - self._updater = SelfUpdateVersionUpdater(gs_id, datetime.datetime.now()) - self._save_rsm_update_state(is_last_update_with_rsm=False) - except VMEnabledRSMUpdates: + self._updater = SelfUpdateVersionUpdater(self._gs_id, datetime.datetime.now()) + self._remove_rsm_update_state() + + if updater_mode == RSMUpdates.Enabled: msg = "VM enabled for RSM updates, switching to RSM update mode" logger.info(msg) add_event(op=WALAEventOperation.AgentUpgrade, message=msg, log_event=False) - self._updater = RSMVersionUpdater(gs_id, self._daemon_version, datetime.datetime.now()) - self._save_rsm_update_state(is_last_update_with_rsm=True) + self._updater = RSMVersionUpdater(self._gs_id, self._daemon_version) + self._save_rsm_update_state() self._updater.retrieve_agent_version(agent_family, goal_state) diff --git a/azurelinuxagent/ga/ga_version_updater.py b/azurelinuxagent/ga/ga_version_updater.py index a4709cf320..0d3f639f25 100644 --- a/azurelinuxagent/ga/ga_version_updater.py +++ b/azurelinuxagent/ga/ga_version_updater.py @@ -30,16 +30,12 @@ from azurelinuxagent.ga.guestagent import GuestAgent -class VMEnabledRSMUpdates(TypeError): +class RSMUpdates(object): """ - Thrown when agent needs to switch to RSM update mode if vm turn on RSM updates - """ - - -class VMDisabledRSMUpdates(TypeError): - """ - Thrown when agent needs to switch to self update mode if vm turn off RSM updates + Enum for switching between RSM updates and self updates """ + Enabled = "Enabled" + Disabled = "Disabled" class GAVersionUpdater(object): @@ -49,20 +45,23 @@ def __init__(self, gs_id): self._version = FlexibleVersion("0.0.0.0") # Initialize to zero and retrieve from goal state later stage self._agent_manifest = None # Initialize to None and fetch from goal state at different stage for different updater - def is_update_allowed_this_time(self): + def is_update_allowed_this_time(self, ext_gs_updated): """ This function checks if we allowed to update the agent. - return false when we don't allow updates. + @param ext_gs_updated: True if extension goal state updated else False + @return false when we don't allow updates. """ raise NotImplementedError - def check_and_switch_updater_if_changed(self, agent_family, gs_id): + def check_and_switch_updater_if_changed(self, agent_family, gs_id, ext_gs_updated): """ checks and raise the updater exception if we need to switch to self-update from rsm update or vice versa @param agent_family: agent family @param gs_id: incarnation of the goal state - @return: VMDisabledRSMUpdates: raise when agent need to stop rsm updates and switch to self-update - VMEnabledRSMUpdates: raise when agent need to switch to rsm update + @param ext_gs_updated: True if extension goal state updated else False + @return: RSMUpdates.Disabled: return when agent need to stop rsm updates and switch to self-update + RSMUpdates.Enabled: return when agent need to switch to rsm update + None: return when no need to switch """ raise NotImplementedError diff --git a/azurelinuxagent/ga/rsm_version_updater.py b/azurelinuxagent/ga/rsm_version_updater.py index b6dc994bba..dc972c1c7a 100644 --- a/azurelinuxagent/ga/rsm_version_updater.py +++ b/azurelinuxagent/ga/rsm_version_updater.py @@ -16,7 +16,6 @@ # # Requires Python 2.6+ and Openssl 1.0+ -import datetime import glob import os @@ -25,15 +24,14 @@ from azurelinuxagent.common.exception import AgentUpgradeExitException, AgentUpdateError from azurelinuxagent.common.utils.flexible_version import FlexibleVersion from azurelinuxagent.common.version import CURRENT_VERSION, AGENT_NAME -from azurelinuxagent.ga.ga_version_updater import GAVersionUpdater, VMDisabledRSMUpdates +from azurelinuxagent.ga.ga_version_updater import GAVersionUpdater, RSMUpdates from azurelinuxagent.ga.guestagent import GuestAgent class RSMVersionUpdater(GAVersionUpdater): - def __init__(self, gs_id, daemon_version, last_attempted_rsm_version_update_time): + def __init__(self, gs_id, daemon_version): super(RSMVersionUpdater, self).__init__(gs_id) self._daemon_version = daemon_version - self._last_attempted_rsm_version_update_time = last_attempted_rsm_version_update_time @staticmethod def _get_all_agents_on_disk(): @@ -45,56 +43,46 @@ def _get_available_agents_on_disk(self): available_agents = [agent for agent in self._get_all_agents_on_disk() if agent.is_available] return sorted(available_agents, key=lambda agent: agent.version, reverse=True) - def is_update_allowed_this_time(self): + def is_update_allowed_this_time(self, ext_gs_updated): """ - update is allowed once per (as specified in the conf.get_autoupdate_frequency()) - If update allowed, we update the last_attempted_rsm_version_update_time to current time. + RSM update allowed if we have a new goal state """ - now = datetime.datetime.now() + return ext_gs_updated - if self._last_attempted_rsm_version_update_time != datetime.datetime.min: - next_attempt_time = self._last_attempted_rsm_version_update_time + datetime.timedelta( - seconds=conf.get_agentupdate_frequency()) - else: - next_attempt_time = now - - if next_attempt_time > now: - return False - self._last_attempted_rsm_version_update_time = now - # The time limit elapsed for us to allow updates. - return True - - def check_and_switch_updater_if_changed(self, agent_family, gs_id): + def check_and_switch_updater_if_changed(self, agent_family, gs_id, ext_gs_updated): """ Checks if there is a new goal state and decide if we need to continue with rsm update or switch to self-update. - Firstly it checks agent supports GA versioning or not. If not, we raise exception to switch to self-update. - if vm is enabled for RSM updates and continue with rsm update, otherwise we raise exception to switch to self-update. - if either isVersionFromRSM or isVMEnabledForRSMUpgrades is missing in the goal state, we ignore the update as we consider it as invalid goal state. + Firstly it checks agent supports GA versioning or not. If not, we return rsm updates disabled to switch to self-update. + if vm is enabled for RSM updates and continue with rsm update, otherwise we return rsm updates disabled to switch to self-update. + if either isVersionFromRSM or isVMEnabledForRSMUpgrades or version is missing in the goal state, we ignore the update as we consider it as invalid goal state. """ - if self._gs_id != gs_id: + if ext_gs_updated: self._gs_id = gs_id if not conf.get_enable_ga_versioning(): - raise VMDisabledRSMUpdates() + return RSMUpdates.Disabled if agent_family.is_vm_enabled_for_rsm_upgrades is None: raise AgentUpdateError( "Received invalid goal state:{0}, missing isVMEnabledForRSMUpgrades property. So, skipping agent update".format( - gs_id)) + self._gs_id)) elif not agent_family.is_vm_enabled_for_rsm_upgrades: - raise VMDisabledRSMUpdates() + return RSMUpdates.Disabled else: if agent_family.is_version_from_rsm is None: raise AgentUpdateError( "Received invalid goal state:{0}, missing isVersionFromRSM property. So, skipping agent update".format( - gs_id)) + self._gs_id)) + if agent_family.version is None: + raise AgentUpdateError( + "Received invalid goal state:{0}, missing version property. So, skipping agent update".format( + self._gs_id)) + + return None def retrieve_agent_version(self, agent_family, goal_state): """ Get the agent version from the goal state """ - if agent_family.version is None and agent_family.is_vm_enabled_for_rsm_upgrades and agent_family.is_version_from_rsm: - raise AgentUpdateError( - "Received invalid goal state:{0}, missing version property. So, skipping agent update".format(self._gs_id)) self._version = FlexibleVersion(agent_family.version) def is_retrieved_version_allowed_to_update(self, agent_family): diff --git a/azurelinuxagent/ga/self_update_version_updater.py b/azurelinuxagent/ga/self_update_version_updater.py index 712f904900..2b04fd5c22 100644 --- a/azurelinuxagent/ga/self_update_version_updater.py +++ b/azurelinuxagent/ga/self_update_version_updater.py @@ -23,7 +23,7 @@ from azurelinuxagent.common.exception import AgentUpgradeExitException, AgentUpdateError from azurelinuxagent.common.utils.flexible_version import FlexibleVersion from azurelinuxagent.common.version import CURRENT_VERSION -from azurelinuxagent.ga.ga_version_updater import GAVersionUpdater, VMEnabledRSMUpdates +from azurelinuxagent.ga.ga_version_updater import GAVersionUpdater, RSMUpdates class SelfUpdateType(object): @@ -60,31 +60,27 @@ def _get_agent_upgrade_type(version): return SelfUpdateType.Hotfix return SelfUpdateType.Regular - def _get_next_upgrade_times(self, now): + @staticmethod + def _get_next_process_time(last_val, frequency, now): """ - Get the next upgrade times - return: Next Hotfix Upgrade Time, Next Regular Upgrade Time + Get the next upgrade time """ - def get_next_process_time(last_val, frequency): - return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) - - next_hotfix_time = get_next_process_time(self._last_attempted_self_update_time, - conf.get_self_update_hotfix_frequency()) - next_regular_time = get_next_process_time(self._last_attempted_self_update_time, - conf.get_self_update_regular_frequency()) - - return next_hotfix_time, next_regular_time + return now if last_val == datetime.datetime.min else last_val + datetime.timedelta(seconds=frequency) def _is_new_agent_allowed_update(self): """ This method ensure that update is allowed only once per (hotfix/Regular) upgrade frequency """ now = datetime.datetime.now() - next_hotfix_time, next_regular_time = self._get_next_upgrade_times(now) upgrade_type = self._get_agent_upgrade_type(self._version) + if upgrade_type == SelfUpdateType.Hotfix: + next_update_time = self._get_next_process_time(self._last_attempted_self_update_time, + conf.get_self_update_hotfix_frequency(), now) + else: + next_update_time = self._get_next_process_time(self._last_attempted_self_update_time, + conf.get_self_update_regular_frequency(), now) - if (upgrade_type == SelfUpdateType.Hotfix and next_hotfix_time <= now) or ( - upgrade_type == SelfUpdateType.Regular and next_regular_time <= now): + if next_update_time <= now: # Update the last upgrade check time even if no new agent is available for upgrade self._last_attempted_self_update_time = now return True @@ -99,7 +95,8 @@ def _should_agent_attempt_manifest_download(self): now = datetime.datetime.now() if self._last_attempted_manifest_download_time != datetime.datetime.min: - next_attempt_time = self._last_attempted_manifest_download_time + datetime.timedelta(seconds=conf.get_agentupdate_frequency()) + next_attempt_time = self._last_attempted_manifest_download_time + datetime.timedelta( + seconds=conf.get_autoupdate_frequency()) else: next_attempt_time = now @@ -108,7 +105,7 @@ def _should_agent_attempt_manifest_download(self): self._last_attempted_manifest_download_time = now return True - def is_update_allowed_this_time(self): + def is_update_allowed_this_time(self, ext_gs_updated): """ Checks if we allowed download manifest as per manifest download frequency """ @@ -116,21 +113,27 @@ def is_update_allowed_this_time(self): return False return True - def check_and_switch_updater_if_changed(self, agent_family, gs_id): + def check_and_switch_updater_if_changed(self, agent_family, gs_id, ext_gs_updated): """ Checks if there is a new goal state and decide if we need to continue with self-update or switch to rsm update. - if vm is not enabled for RSM updates or agent not supports GA versioning then we continue with self update, otherwise we raise exception to switch to rsm update. + if vm is not enabled for RSM updates or agent not supports GA versioning then we continue with self update, otherwise we rsm enabled to switch to rsm update. if isVersionFromRSM is missing but isVMEnabledForRSMUpgrades is present in the goal state, we ignore the update as we consider it as invalid goal state. """ - if self._gs_id != gs_id: + if ext_gs_updated: self._gs_id = gs_id - if conf.get_enable_ga_versioning() and agent_family.is_vm_enabled_for_rsm_upgrades: + if conf.get_enable_ga_versioning() and agent_family.is_vm_enabled_for_rsm_upgrades is not None and agent_family.is_vm_enabled_for_rsm_upgrades: if agent_family.is_version_from_rsm is None: raise AgentUpdateError( "Received invalid goal state:{0}, missing isVersionFromRSM property. So, skipping agent update".format( - gs_id)) + self._gs_id)) else: - raise VMEnabledRSMUpdates() + if agent_family.version is None: + raise AgentUpdateError( + "Received invalid goal state:{0}, missing version property. So, skipping agent update".format( + self._gs_id)) + return RSMUpdates.Enabled + + return None def retrieve_agent_version(self, agent_family, goal_state): """ @@ -178,4 +181,6 @@ def proceed_with_update(self): if self._version > CURRENT_VERSION: # In case of an upgrade, we don't need to exclude anything as the daemon will automatically # start the next available highest version which would be the target version - raise AgentUpgradeExitException("Agent completed all update checks, exiting current process to upgrade to the new Agent version {0}".format(self._version)) + raise AgentUpgradeExitException( + "Agent completed all update checks, exiting current process to upgrade to the new Agent version {0}".format( + self._version)) diff --git a/azurelinuxagent/ga/update.py b/azurelinuxagent/ga/update.py index 0becb7804f..337e755176 100644 --- a/azurelinuxagent/ga/update.py +++ b/azurelinuxagent/ga/update.py @@ -547,21 +547,20 @@ def _processing_new_extensions_goal_state(self): """ True if we are currently processing a new extensions goal state """ - egs = self._goal_state.extensions_goal_state - return self._goal_state is not None and egs.id != self._last_extensions_gs_id and not egs.is_outdated + return self._goal_state is not None and self._goal_state.extensions_goal_state.id != self._last_extensions_gs_id and not self._goal_state.extensions_goal_state.is_outdated def _process_goal_state(self, exthandlers_handler, remote_access_handler, agent_update_handler): protocol = exthandlers_handler.protocol # update self._goal_state if not self._try_update_goal_state(protocol): - agent_update_handler.run(self._goal_state) + agent_update_handler.run(self._goal_state, self._processing_new_extensions_goal_state()) # status reporting should be done even when the goal state is not updated self._report_status(exthandlers_handler, agent_update_handler) return # check for agent updates - agent_update_handler.run(self._goal_state) + agent_update_handler.run(self._goal_state, self._processing_new_extensions_goal_state()) try: if self._processing_new_extensions_goal_state(): @@ -756,7 +755,7 @@ def log_if_agent_versioning_feature_disabled(): log_if_int_changed_from_default("OS.EnableFirewallPeriod", conf.get_enable_firewall_period()) if conf.get_autoupdate_enabled(): - log_if_int_changed_from_default("Autoupdate.Frequency", conf.get_agentupdate_frequency()) + log_if_int_changed_from_default("Autoupdate.Frequency", conf.get_autoupdate_frequency()) if conf.get_enable_fast_track(): log_if_op_disabled("Debug.EnableFastTrack", conf.get_enable_fast_track()) diff --git a/tests/ga/test_agent_update_handler.py b/tests/ga/test_agent_update_handler.py index 959fbc619b..6c069bfc84 100644 --- a/tests/ga/test_agent_update_handler.py +++ b/tests/ga/test_agent_update_handler.py @@ -27,7 +27,7 @@ def setUp(self): clear_singleton_instances(ProtocolUtil) @contextlib.contextmanager - def _get_agent_update_handler(self, test_data=None, agentupdate_frequency=0.001, autoupdate_enabled=True, protocol_get_error=False): + def _get_agent_update_handler(self, test_data=None, autoupdate_frequency=0.001, autoupdate_enabled=True, protocol_get_error=False): # Default to DATA_FILE of test_data parameter raises the pylint warning # W0102: Dangerous default value DATA_FILE (builtins.dict) as argument (dangerous-default-value) test_data = DATA_FILE if test_data is None else test_data @@ -54,7 +54,7 @@ def put_handler(url, *args, **_): protocol.set_http_handlers(http_get_handler=get_handler, http_put_handler=put_handler) with patch("azurelinuxagent.common.conf.get_autoupdate_enabled", return_value=autoupdate_enabled): - with patch("azurelinuxagent.common.conf.get_agentupdate_frequency", return_value=agentupdate_frequency): + with patch("azurelinuxagent.common.conf.get_autoupdate_frequency", return_value=autoupdate_frequency): with patch("azurelinuxagent.common.conf.get_autoupdate_gafamily", return_value="Prod"): with patch("azurelinuxagent.common.conf.get_enable_ga_versioning", return_value=True): with patch("azurelinuxagent.common.event.EventLogger.add_event") as mock_telemetry: @@ -103,7 +103,7 @@ def _assert_agent_exit_process_telemetry_emitted(self, message): def test_it_should_not_update_when_autoupdate_disabled(self): self.prepare_agents(count=1) with self._get_agent_update_handler(autoupdate_enabled=False) as (agent_update_handler, mock_telemetry): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) self.assertEqual(0, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "requesting a new agent version" in kwarg['message'] and kwarg[ @@ -117,7 +117,7 @@ def test_it_should_update_to_largest_version_if_ga_versioning_disabled(self): with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with patch.object(conf, "get_enable_ga_versioning", return_value=False): with self.assertRaises(AgentUpgradeExitException) as context: - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_update_discovered_from_agent_manifest(mock_telemetry, version="99999.0.0.0") self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) @@ -127,14 +127,14 @@ def test_it_should_not_update_to_largest_version_if_time_window_not_elapsed(self data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_uris.xml" - with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=10) as (agent_update_handler, _): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10) as (agent_update_handler, _): + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") agent_update_handler._protocol.mock_wire_data.set_ga_manifest("wire/ga_manifest.xml") agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") @@ -147,13 +147,13 @@ def test_it_should_update_to_largest_version_if_time_window_elapsed(self): with patch("azurelinuxagent.common.conf.get_self_update_regular_frequency", return_value=0.001): with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") agent_update_handler._protocol.mock_wire_data.set_ga_manifest("wire/ga_manifest.xml") agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_update_discovered_from_agent_manifest(mock_telemetry, inc=2, version="99999.0.0.0") self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) @@ -163,27 +163,9 @@ def test_it_should_not_allow_update_if_largest_version_below_current_version(sel data_file = DATA_FILE.copy() data_file["ga_manifest"] = "wire/ga_manifest_no_upgrade.xml" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION)]) - def test_it_should_not_agent_update_if_last_attempted_update_time_not_elapsed(self): - self.prepare_agents(count=1) - data_file = DATA_FILE.copy() - data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" - version = "5.2.0.1" - with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=10) as (agent_update_handler, mock_telemetry): - agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(version) - agent_update_handler._protocol.mock_wire_data.set_incarnation(2) - agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - - self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) - self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) - # Now we shouldn't check for download if update not allowed.This run should not add new logs - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) - self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) - def test_it_should_update_to_largest_version_if_rsm_version_not_available(self): self.prepare_agents(count=1) @@ -191,7 +173,7 @@ def test_it_should_update_to_largest_version_if_rsm_version_not_available(self): data_file['ext_conf'] = "wire/ext_conf.xml" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_update_discovered_from_agent_manifest(mock_telemetry, version="99999.0.0.0") self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) @@ -200,11 +182,11 @@ def test_it_should_not_download_manifest_again_if_last_attempted_download_time_n self.prepare_agents(count=1) data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=10, protocol_get_error=True) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10, protocol_get_error=True) as (agent_update_handler, _): # making multiple agent update attempts - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) mock_wire_data = agent_update_handler._protocol.mock_wire_data self.assertEqual(1, mock_wire_data.call_counts['manifest_of_ga.xml'], "Agent manifest should not be downloaded again") @@ -214,11 +196,11 @@ def test_it_should_download_manifest_if_last_attempted_download_time_is_elapsed( data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf.xml" - with self._get_agent_update_handler(test_data=data_file, agentupdate_frequency=0.00001, protocol_get_error=True) as (agent_update_handler, _): + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=0.00001, protocol_get_error=True) as (agent_update_handler, _): # making multiple agent update attempts - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) mock_wire_data = agent_update_handler._protocol.mock_wire_data self.assertEqual(3, mock_wire_data.call_counts['manifest_of_ga.xml'], "Agent manifest should be downloaded in all attempts") @@ -236,7 +218,7 @@ def test_it_should_not_agent_update_if_rsm_version_is_same_as_current_version(se str(CURRENT_VERSION)) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertEqual(0, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "requesting a new agent version" in kwarg['message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade]), "rsm version should be same as current version") @@ -253,7 +235,7 @@ def test_it_should_upgrade_agent_if_rsm_version_is_available_greater_than_curren with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_agent_rsm_version_in_goal_state(mock_telemetry, version="9.9.9.10") self._assert_agent_directories_exist_and_others_dont_exist(versions=["9.9.9.10", str(CURRENT_VERSION)]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) @@ -273,12 +255,30 @@ def test_it_should_downgrade_agent_if_rsm_version_is_available_less_than_current agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() with self.assertRaises(AgentUpgradeExitException) as context: - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=downgraded_version) self._assert_agent_directories_exist_and_others_dont_exist( versions=[downgraded_version, str(CURRENT_VERSION)]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) + def test_it_should_not_do_rsm_update_if_gs_not_updated_in_next_attempt(self): + self.prepare_agents(count=1) + data_file = DATA_FILE.copy() + data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" + version = "5.2.0.1" + with self._get_agent_update_handler(test_data=data_file, autoupdate_frequency=10) as (agent_update_handler, mock_telemetry): + agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(version) + agent_update_handler._protocol.mock_wire_data.set_incarnation(2) + agent_update_handler._protocol.client.update_goal_state() + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) + + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) + # Now we shouldn't check for download if update not allowed(GS not updated).This run should not add new logs + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), False) + self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) + self._assert_no_agent_package_telemetry_emitted(mock_telemetry, version=version) + def test_it_should_not_downgrade_below_daemon_version(self): data_file = DATA_FILE.copy() data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" @@ -293,7 +293,7 @@ def test_it_should_not_downgrade_below_daemon_version(self): agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertFalse(os.path.exists(self.agent_dir(downgraded_version)), "New agent directory should not be found") @@ -304,7 +304,7 @@ def test_it_should_update_to_largest_version_if_vm_not_enabled_for_rsm_upgrades( data_file['ext_conf'] = "wire/ext_conf_vm_not_enabled_for_rsm_upgrades.xml" with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): with self.assertRaises(AgentUpgradeExitException) as context: - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_update_discovered_from_agent_manifest(mock_telemetry, version="99999.0.0.0") self._assert_agent_directories_exist_and_others_dont_exist(versions=[str(CURRENT_VERSION), "99999.0.0.0"]) self._assert_agent_exit_process_telemetry_emitted(ustr(context.exception.reason)) @@ -319,7 +319,7 @@ def test_it_should_not_update_to_version_if_version_not_from_rsm(self): agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(downgraded_version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_agent_directories_exist_and_others_dont_exist( versions=[str(CURRENT_VERSION)]) self.assertFalse(os.path.exists(self.agent_dir(downgraded_version)), @@ -339,7 +339,7 @@ def test_handles_if_rsm_version_not_found_in_pkgs_to_download(self): agent_update_handler._protocol.mock_wire_data.set_version_in_agent_family(version) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self._assert_agent_rsm_version_in_goal_state(mock_telemetry, inc=2, version=version) self.assertFalse(os.path.exists(self.agent_dir(version)), @@ -356,7 +356,7 @@ def test_handles_missing_agent_family(self): self.assertEqual(20, self.agent_count(), "Agent directories not set properly") with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") @@ -375,7 +375,7 @@ def test_it_should_report_update_status_with_success(self): str(CURRENT_VERSION)) agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Success, vm_agent_update_status.status) self.assertEqual(0, vm_agent_update_status.code) @@ -386,7 +386,7 @@ def test_it_should_report_update_status_with_error_on_download_fail(self): data_file["ext_conf"] = "wire/ext_conf_rsm_version.xml" with self._get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Error, vm_agent_update_status.status) self.assertEqual(1, vm_agent_update_status.code) @@ -398,7 +398,7 @@ def test_it_should_report_update_status_with_missing_rsm_version_error(self): data_file['ext_conf'] = "wire/ext_conf_version_missing_in_agent_family.xml" with self._get_agent_update_handler(test_data=data_file, protocol_get_error=True) as (agent_update_handler, _): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) vm_agent_update_status = agent_update_handler.get_vmagent_update_status() self.assertEqual(VMAgentUpdateStatuses.Error, vm_agent_update_status.status) self.assertEqual(1, vm_agent_update_status.code) @@ -413,7 +413,7 @@ def test_it_should_not_log_same_error_next_hours(self): self.assertEqual(20, self.agent_count(), "Agent directories not set properly") with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, mock_telemetry): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertFalse(os.path.exists(self.agent_dir("99999.0.0.0")), "New agent directory should not be found") @@ -423,7 +423,7 @@ def test_it_should_not_log_same_error_next_hours(self): 'message'] and kwarg[ 'op'] == WALAEventOperation.AgentUpgrade]), "Agent manifest should not be in GS") - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) self.assertEqual(1, len([kwarg['message'] for _, kwarg in mock_telemetry.call_args_list if "No manifest links found for agent family" in kwarg[ @@ -436,25 +436,16 @@ def test_it_should_save_rsm_state_of_the_most_recent_goal_state(self): with self._get_agent_update_handler(test_data=data_file) as (agent_update_handler, _): with self.assertRaises(AgentUpgradeExitException): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) state_file = os.path.join(conf.get_lib_dir(), "rsm_update.json") - self.assertTrue(os.path.exists(state_file), "The rsm properties was not saved (can't find {0})".format(state_file)) - - with open(state_file, "r") as state_file_: - state = json.load(state_file_) - - self.assertTrue(state["isLastUpdateWithRSM"], "{0} does not contain True".format(state_file)) + self.assertTrue(os.path.exists(state_file), "The rsm state file was not saved (can't find {0})".format(state_file)) # check if state gets updated if most recent goal state has different values agent_update_handler._protocol.mock_wire_data.set_extension_config_is_vm_enabled_for_rsm_upgrades("False") agent_update_handler._protocol.mock_wire_data.set_incarnation(2) agent_update_handler._protocol.client.update_goal_state() with self.assertRaises(AgentUpgradeExitException): - agent_update_handler.run(agent_update_handler._protocol.get_goal_state()) - - self.assertTrue(os.path.exists(state_file), "The rsm properties was not saved (can't find {0})".format(state_file)) - with open(state_file, "r") as state_file_: - state = json.load(state_file_) + agent_update_handler.run(agent_update_handler._protocol.get_goal_state(), True) - self.assertFalse(state["isLastUpdateWithRSM"], "{0} does not contain False".format(state_file)) + self.assertFalse(os.path.exists(state_file), "The rsm file should be removed (file: {0})".format(state_file)) diff --git a/tests/ga/test_update.py b/tests/ga/test_update.py index c45cdc5fd3..300be36bf5 100644 --- a/tests/ga/test_update.py +++ b/tests/ga/test_update.py @@ -1430,10 +1430,10 @@ def test_run_emits_restart_event(self): class TestAgentUpgrade(UpdateTestCase): @contextlib.contextmanager - def create_conf_mocks(self, agentupdate_frequency, hotfix_frequency, normal_frequency): + def create_conf_mocks(self, autoupdate_frequency, hotfix_frequency, normal_frequency): # Disabling extension processing to speed up tests as this class deals with testing agent upgrades with patch("azurelinuxagent.common.conf.get_extensions_enabled", return_value=False): - with patch("azurelinuxagent.common.conf.get_agentupdate_frequency", return_value=agentupdate_frequency): + with patch("azurelinuxagent.common.conf.get_autoupdate_frequency", return_value=autoupdate_frequency): with patch("azurelinuxagent.common.conf.get_self_update_hotfix_frequency", return_value=hotfix_frequency): with patch("azurelinuxagent.common.conf.get_self_update_regular_frequency", return_value=normal_frequency): with patch("azurelinuxagent.common.conf.get_autoupdate_gafamily", return_value="Prod"): @@ -1514,7 +1514,7 @@ def test_it_should_upgrade_agent_on_process_start_if_auto_upgrade_enabled(self): self.__assert_agent_directories_available(versions=["9.9.9.10"]) self.__assert_upgrade_telemetry_emitted(mock_telemetry) - def test_it_should_not_update_agent_if_last_update_time_not_permitted(self): + def test_it_should_not_update_agent_with_rsm_if_gs_not_updated_in_next_attempts(self): no_of_iterations = 10 data_file = DATA_FILE.copy() data_file['ext_conf'] = "wire/ext_conf_rsm_version.xml" @@ -1523,7 +1523,8 @@ def test_it_should_not_update_agent_if_last_update_time_not_permitted(self): test_frequency = 10 with self.__get_update_handler(iterations=no_of_iterations, test_data=data_file, autoupdate_frequency=test_frequency) as (update_handler, _): - update_handler._protocol.mock_wire_data.set_ga_manifest_version_version("5.2.0.1") + # Given version which will fail on first attempt, then rsm shouldn't make any futher attempts since GS is not updated + update_handler._protocol.mock_wire_data.set_version_in_agent_family("5.2.1.0") update_handler._protocol.mock_wire_data.set_incarnation(2) update_handler.run(debug=True) @@ -1531,6 +1532,8 @@ def test_it_should_not_update_agent_if_last_update_time_not_permitted(self): self.assertEqual(no_of_iterations, update_handler.get_iterations(), "Update handler should've run its course") self.assertFalse(os.path.exists(self.agent_dir("5.2.0.1")), "New agent directory should not be found") + self.assertGreaterEqual(update_handler._protocol.mock_wire_data.call_counts["manifest_of_ga.xml"], 1, + "only 1 agent manifest call should've been made - 1 per incarnation") def test_it_should_not_auto_upgrade_if_auto_update_disabled(self): with self.__get_update_handler(iterations=10) as (update_handler, _): From 6b57d2ee434678ae22ee72f1fa46dd4239b9e6ae Mon Sep 17 00:00:00 2001 From: nnandigam Date: Wed, 29 Nov 2023 18:07:41 -0800 Subject: [PATCH 11/11] conf change --- azurelinuxagent/common/conf.py | 2 +- .../protocol/extensions_goal_state_from_extensions_config.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py index df88b1f52a..57d6c9d280 100644 --- a/azurelinuxagent/common/conf.py +++ b/azurelinuxagent/common/conf.py @@ -480,7 +480,7 @@ def get_autoupdate_enabled(conf=__conf__): def get_autoupdate_frequency(conf=__conf__): - return conf.get_int("AutoUpdate.Frequency", 3600) + return conf.get_int("Autoupdate.Frequency", 3600) def get_enable_overprovisioning(conf=__conf__): diff --git a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py index 5f81105783..2b98819a2a 100644 --- a/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py +++ b/azurelinuxagent/common/protocol/extensions_goal_state_from_extensions_config.py @@ -67,9 +67,9 @@ def _parse_extensions_config(self, xml_text, wire_client): uris = findall(uris_list, "Uri") family = VMAgentFamily(name) family.version = version - if is_version_from_rsm is not None: # checking None because converting string to lower + if is_version_from_rsm is not None: # checking None because converting string to lowercase family.is_version_from_rsm = is_version_from_rsm.lower() == "true" - if is_vm_enabled_for_rsm_upgrades is not None: # checking None because converting string to lower + if is_vm_enabled_for_rsm_upgrades is not None: # checking None because converting string to lowercase family.is_vm_enabled_for_rsm_upgrades = is_vm_enabled_for_rsm_upgrades.lower() == "true" for uri in uris: family.uris.append(gettext(uri))